diff options
106 files changed, 6456 insertions, 7766 deletions
| @@ -24,14 +24,17 @@ Martin Hurton <hurtonm@gmail.com>  Martin Lucina <mato@kotelna.sk>  Martin Sustrik <sustrik@250bpm.com>  Matus Hamorsky <mhamorsky@gmail.com> +Max Wolf <YIDIEPXGXGPN@spammotel.com>  McClain Looney <m@loonsoft.com>  Mikael Helbo Kjaer <mhk@designtech.dk>  Pavel Gushcha <pavimus@gmail.com>  Pavol Malosek <malosek@fastmq.com>  Pieter Hintjens <ph@imatix.com>  Piotr Trojanek <piotr.trojanek@gmail.com> +Sebastian Otaegui <feniix@gmail.com>  Steven McCoy <steven.mccoy@miru.hk>  Tamara Kustarova <kustarova.tamara@gmail.com> +Taras Shpot <taras.shpot@eleks.com>  Tero Marttila <terom@fixme.fi>  Terry Wilson <terry@logivox.net>  Vitaly Mayatskikh <v.mayatskih@gmail.com> @@ -1,5 +1,216 @@  # Generated by Makefile. Do not edit. +commit 53d1677c8b0f85e309c6a067b47c80dedcffb5aa +Author: Martin Sustrik <sustrik@250bpm.com> +Date:   Fri Oct 15 19:37:41 2010 +0200 + +    Update NEWS for 2.0.10 release +     +    Signed-off-by: Martin Sustrik <sustrik@250bpm.com> + + NEWS |   28 ++++++++++++++++++++++++++++ + 1 files changed, 28 insertions(+), 0 deletions(-) + +commit 6e9520533395b19ed6f6a17de6f196aa5e93da9f +Author: Taras Shpot <taras.shpot@eleks.com> +Date:   Fri Oct 15 17:45:02 2010 +0200 + +    Fix memory leak under Windows +     +    The comment about memory ownership in uuid_t::to_string +    was misleading as on most platforms the buffer is a field +    of the object; +    The string allocated in UuidToString() wasn't properly freed +    with RpcStringFree() +     +    Signed-off-by: Taras Shpot <taras.shpot@eleks.com> + + AUTHORS      |    1 + + src/uuid.cpp |    2 ++ + src/uuid.hpp |    2 +- + 3 files changed, 4 insertions(+), 1 deletions(-) + +commit 5b44025602b6af952fc434a6e7bf8dff65a00be6 +Author: Martin Lucina <mato@kotelna.sk> +Date:   Fri Oct 15 17:27:10 2010 +0200 + +    maint: Upgrade OpenPGM to 2.1.28~dfsg +     +    Upgrade OpenPGM to version 2.1.28 for ZeroMQ 2.0.x. Now we also use the +    DFSG-compliant upstream release tarball. +     +    Signed-off-by: Martin Lucina <mato@kotelna.sk> + + configure.in                              |    2 +- + foreign/openpgm/libpgm-2-1-28~dfsg.tar.gz |  Bin 0 -> 340501 bytes + foreign/openpgm/libpgm-2.1.26.tar.gz      |  Bin 413863 -> 0 bytes + 3 files changed, 1 insertions(+), 1 deletions(-) + +commit 3cf01bf56e66657da795e43f09fa2499b2381dc9 +Author: Martin Lucina <mato@kotelna.sk> +Date:   Fri Oct 15 15:30:10 2010 +0200 + +    Makefile.am: Add missing files to distribution, improve maintainer-clean +     +    Add missing files needed for regenerating configure to the distribution; +    add MAINTAINERS; improve maintainer-clean to produce a really clean tree. +     +    Signed-off-by: Martin Lucina <mato@kotelna.sk> + + Makefile.am |   18 +++++++++++++----- + 1 files changed, 13 insertions(+), 5 deletions(-) + +commit 3b3df731e60d604794538d0b9f6cb5b802a8745d +Author: Martin Lucina <mato@kotelna.sk> +Date:   Fri Oct 15 15:05:54 2010 +0200 + +    configure.in: Extract API version from zmq.h +     +    * Added a version.sh and relevant changes to configure.in to extract the API +      version from zmq.h at the time autogen.sh is run. +    * Moved the version macros to be next to zmq_version in zmq.h and improved +      the comments. +    * Modified ZMQ_MAKE_VERSION to use (x) instead of plain x when expanding +      macro parameters. +     +    Signed-off-by: Martin Lucina <mato@kotelna.sk> + + Makefile.am   |    1 + + configure.in  |    8 +++++--- + include/zmq.h |   21 +++++++++++---------- + version.sh    |   21 +++++++++++++++++++++ + 4 files changed, 38 insertions(+), 13 deletions(-) + +commit 26d7669464054a4aed3f0ee9643bffa0e01aab5c +Author: Gonzalo Diethelm <gonzalo.diethelm@diethelm.org> +Date:   Thu Oct 14 08:02:43 2010 -0300 + +    Added bin directory to ignore list. + + .gitignore |    1 + + 1 files changed, 1 insertions(+), 0 deletions(-) + +commit 2568947a71adc0e8ddad54b6054a3b3e532e1613 +Author: Sebastian Otaegui <feniix@gmail.com> +Date:   Wed Oct 13 07:59:50 2010 +0200 + +    Add support for RHEL6 in the spec file +     +    Signed-off-by: Sebastian Otaegui <feniix@gmail.com> + + AUTHORS                   |    1 + + builds/redhat/zeromq.spec |    7 +++++++ + 2 files changed, 8 insertions(+), 0 deletions(-) + +commit 57428db89885631128cb9a48b334b050eb83a512 +Author: Martin Lucina <mato@kotelna.sk> +Date:   Mon Oct 11 16:39:48 2010 +0200 + +    configure.in: Do not patch libtool rpath handling +     +    For historic reasons (mainly compatbility with really old libtool), configure was +    patching libtool to not use rpath in binaries. This breaks (among other things) +    correct operation of "make check" since the test binaries may not be run with +    the correct shared library version. +     +    Current best practice as seen e.g. at http://wiki.debian.org/RpathIssue suggests +    that this is no longer an issue, so I'm removing the code that patches libtool. +     +    Signed-off-by: Martin Lucina <mato@kotelna.sk> + + configure.in |   11 ----------- + 1 files changed, 0 insertions(+), 11 deletions(-) + +commit 6cd0867f0208b4fca4cfca2a2ff7bc0de5199d4a +Author: Martin Sustrik <sustrik@250bpm.com> +Date:   Mon Oct 11 16:32:27 2010 +0200 + +    Fixing the Red Hat packaging +     +    When adding ZMQ_VERSION macros, I incorrectly removed +    the PACKAGE_VERSION macro. Adding it back. +     +    Signed-off-by: Martin Sustrik <sustrik@250bpm.com> + + configure.in |    4 +++- + 1 files changed, 3 insertions(+), 1 deletions(-) + +commit ef8db789a1c97152e84ff03c9a7f6e1e77d95981 +Author: Martin Sustrik <sustrik@250bpm.com> +Date:   Sat Oct 9 07:53:24 2010 +0200 + +    Version macros added +     | 
