Luca Boccassi
6892b7b60d
Problem: zmq_connect (TCP) has no IPv4 fallback
...
Solution: if opening an IPv6 TCP socket fails because IPv6 is not
available, try to open an IPv4 socket instead when creating and
connecting a TCP endpoint.
2016-04-07 14:31:37 +01:00
Luca Boccassi
792ee7690e
Problem: zmq_bind IPv4 fallback still tries IPv6
...
Solution: if opening an IPv6 TCP socket fails because IPv6 is not
available, try to open an IPv4 socket instead when creating and
binding a TCP endpoint.
2016-04-07 14:17:16 +01:00
Pieter Hintjens
284c743814
Merge pull request #151 from bluca/lingex_fix_backport
...
Problem: connection might terminate prematurely
2016-03-30 19:41:45 +02:00
Luca Boccassi
ee8ba67ff5
Problem: NEWS not up to date with bug fixes
...
Solution: mention closing issue #1877
2016-03-30 18:11:29 +01:00
Soren Hansen
8f1b6f5872
Avoid terminating connections prematurely
...
While sending very large messages (far beyond what fits in a the tcp
buffer, so it takes multiple sendto system calls for it to finish),
zmq_close will close the connection regardless of ZMQ_LINGER.
In case no engine is attached, a pipe->check_read() is needed to look
for the delimiter in the pipe and ultimately trigger the pipe
termination.
However, if there *is* an engine attached, the check_read() looks ahead
and finds the delimiter and terminates the connection even though the
engine might actually still be in the middle of sending a message.
This happens because while the io_thread is still busy sending the data,
the pipe can get terminated and the io thread ends up being terminated.
2016-03-30 17:01:35 +01:00
Pieter Hintjens
42c6ffdc1d
Merge pull request #150 from bluca/uninitialised_sockopt
...
Problem: curve keys getsockopt uninitialised read
2016-02-16 16:14:05 +01:00
Luca Boccassi
5002674fbe
Problem: my name is not in the AUTHORS file
...
Solution: add myself to the list
2016-02-16 14:11:53 +00:00
Luca Boccassi
fdb9c7e035
Problem: NEWS not up to date with bug fixes
...
Solution: mention issues 1806 and 1807
2016-02-16 14:11:38 +00:00
Luca Boccassi
453b4ce596
Problem: Travis CI uses libsodium unstable branch
...
Solution: use stable branch instead of the development branch, and
also clone with --depth 1 to make it more efficient.
2016-02-16 14:11:21 +00:00
Luca Boccassi
6e1424349b
Problem: curve keys getsockopt uninitialised read
...
Solution: always initialised zmq::options_t class variables arrays to
avoid reading uninitialised data when CURVE is not yet configured and
a getsockopt ZMQ_CURVE_{SERVER | PUBLIC | SECRET]KEY is issued.
Backport from libzmq.
2016-02-16 14:11:00 +00:00
Pieter Hintjens
1b95e5fead
Merge pull request #149 from bluca/gcc6
...
Problem: build broken with gcc 6
2016-02-12 23:37:52 +01:00
meox
aafdcc8d2e
[PATCH] fix error with gcc 5.2
2016-02-12 22:19:51 +00:00
Pieter Hintjens
36b4990e14
Merge pull request #147 from greenjava/master
...
Fixed errors with CMake 3.4 and VisualStudio 2015
2016-02-04 09:18:16 +01:00
Julien Waechter
c421799fb2
Fixed build with CMake >=3.4.x
...
Since CMake 3.4.x, in set_target_properties macro, COMPILE_FLAGS with space generate errors (version.rc.res is not generated)
2016-02-04 01:00:15 +01:00
Richard Newton
44588ab730
Update cmake to support Visual Studio 2015
2016-02-03 23:00:56 +01:00
Sergei Nikulov
2ab2cb6028
cmake: fixed error 'install TARGETS given no ARCHIVE DESTINATION for static library target'
2016-02-03 22:39:53 +01:00
Pieter Hintjens
055de7fb7a
Merge pull request #146 from jcfr/backport-fix-gcc-warnings
...
Style: Backport fix gcc warnings
2016-01-30 16:16:52 +01:00
Pieter Hintjens
21b5e4b283
Merge pull request #145 from jcfr/backport-FindAsciiDoc-fix-CMP0053-warning
...
FindAsciiDoc: fix CMP0053 warning with cmake 3.1
2016-01-30 16:15:53 +01:00
Jean-Christophe Fillion-Robin
d2687e75b6
Fix unused parameter and variable warnings.
...
Backported from zeromq/libzmq@00aeadd
It fixes the following warnings:
8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---
In file included from /path/to/src/mechanism.cpp:22:0:
/path/to/src/mechanism.hpp:49:36: warning: unused parameter 'msg_' [-Wunused-parameter]
virtual int encode (msg_t *msg_) { return 0; }
^
/path/to/src/mechanism.hpp:51:36: warning: unused parameter 'msg_' [-Wunused-parameter]
virtual int decode (msg_t *msg_) { return 0; }
^
/path/to/src/mechanism.cpp:126:51: warning: unused parameter 'name_' [-Wunused-parameter]
int zmq::mechanism_t::property (const std::string name_,
^
/path/to/src/mechanism.cpp:127:45: warning: unused parameter 'value_' [-Wunused-parameter]
const void *value_, size_t length_)
^
/path/to/src/mechanism.cpp:127:60: warning: unused parameter 'length_' [-Wunused-parameter]
const void *value_, size_t length_)
^
/path/to/src/mechanism.cpp:127:60: warning: unused parameter 'length_' [-Wunused-parameter]
const void *value_, size_t length_)
^
In file included from /path/to/src/pipe.cpp:28:0:
/path/to/src/ypipe_conflate.hpp: In instantiation of 'bool zmq::ypipe_conflate_t<T, N>::unwrite(T*) [with T = zmq::msg_t; int N = 256]':
/path/to/src/pipe.cpp:489:1: required from here
/path/to/src/ypipe_conflate.hpp:73:33: warning: unused parameter 'value_' [-Wunused-parameter]
inline bool unwrite (T *value_)
^
/path/to/src/zmq_utils.cpp:178:30: warning: unused parameter 'z85_public_key' [-Wunused-parameter]
int zmq_curve_keypair (char *z85_public_key, char *z85_secret_key)
^
/path/to/src/zmq_utils.cpp:178:52: warning: unused parameter 'z85_secret_key' [-Wunused-parameter]
int zmq_curve_keypair (char *z85_public_key, char *z85_secret_key)
^
/path/to/tests/test_hwm.cpp:205:57: warning: unused parameter 'recv_hwm' [-Wunused-parameter]
int test_inproc_bind_and_close_first (int send_hwm, int recv_hwm)
^
[ 69%] Linking CXX executable bin/test_connect_resolve
/path/to/tests/test_disconnect_inproc.cpp:31:14: warning: unused parameter 'argc' [-Wunused-parameter]
int main(int argc, char** argv) {
^
/path/to/tests/test_disconnect_inproc.cpp:31:27: warning: unused parameter 'argv' [-Wunused-parameter]
int main(int argc, char** argv) {
^
/path/to/tests/test_stream.cpp:39:81: warning: missing initializer for member 'zmtp_greeting_t::as_server' [-Wmissing-field-initializers]
= { { 0xFF, 0, 0, 0, 0, 0, 0, 0, 1, 0x7F }, { 3, 0 }, { 'N', 'U', 'L', 'L'} };
^
/path/to/tests/test_stream.cpp:39:81: warning: missing initializer for member 'zmtp_greeting_t::filler' [-Wmissing-field-initializers]
8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---
# Conflicts:
# src/stream.cpp
# src/stream_engine.cpp
# tests/test_stream_disconnect_notifications.cpp
2016-01-30 04:13:39 -05:00
Jean-Christophe Fillion-Robin
4055bbb01f
Problem: Private/internal macros defined in public header.
...
Solution: Move the macros to a private header.
Backported from zeromq/libzmq@3341942
# Conflicts:
# include/zmq.h
# src/address.cpp
# src/client.cpp
# src/server.cpp
# src/socks_connecter.cpp
# src/zmq.cpp
2016-01-30 03:52:24 -05:00
Jean-Christophe Fillion-Robin
300d80ffe9
rename ZMQ_UNUSED macro to LIBZMQ_UNUSED
...
Backported from zeromq/libzmq@63260d8
# Conflicts:
# include/zmq.h
# src/client.cpp
# src/server.cpp
2016-01-30 03:46:46 -05:00
Jean-Christophe Fillion-Robin
9df7ed0740
place a ZMQ_UNUSED macro and replace all unused variables with ZMQ_UNUSED macro
...
Backported from zeromq/libzmq@bff2284
# Conflicts:
# src/client.cpp
# src/server.cpp
2016-01-30 03:42:29 -05:00
Jean-Christophe Fillion-Robin
b690bdf148
FindAsciiDoc: fix CMP0053 warning with cmake 3.1
...
Backported from zeromq/libzmq@032c5ed
This commit fixes the following warnings:
8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---
CMake Warning (dev) at builds/cmake/Modules/FindAsciiDoc.cmake:9 (find_program):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'$ENV{PROGRAMFILES(X86)}/asciidoc'
the old evaluation rules produce:
'/asciidoc'
but the new evaluation rules produce an error:
Syntax error in cmake code at
/path/to/builds/cmake/Modules/FindAsciiDoc.cmake:13
when parsing string
$ENV{PROGRAMFILES(X86)}/asciidoc
Invalid character ('(') in a variable name: 'PROGRAMFILES'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
CMakeLists.txt:193 (find_package)
This warning is for project developers. Use -Wno-dev to suppress it.
8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---
and
8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---
CMake Warning (dev) at builds/cmake/Modules/FindAsciiDoc.cmake:15 (find_program):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'$ENV{PROGRAMFILES(X86)}/asciidoc'
the old evaluation rules produce:
'/asciidoc'
but the new evaluation rules produce an error:
Syntax error in cmake code at
/path/to/builds/cmake/Modules/FindAsciiDoc.cmake:19
when parsing string
$ENV{PROGRAMFILES(X86)}/asciidoc
Invalid character ('(') in a variable name: 'PROGRAMFILES'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
CMakeLists.txt:193 (find_package)
This warning is for project developers. Use -Wno-dev to suppress it.
8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---
2016-01-30 03:16:22 -05:00
Constantin Rack
1206dc46cb
Merge pull request #144 from jcfr/patch-1
...
README: Add hyperlinks to explicitly reference reposistories
2016-01-30 08:11:39 +01:00
Jean-Christophe Fillion-Robin
5ade781283
README: Add hyperlinks to explicitly reference reposistories
2016-01-30 01:58:49 -05:00
Pieter Hintjens
e1ebeadd05
Merge pull request #142 from pothosware/master
...
Fixes for visual studio
2016-01-23 11:48:14 +01:00
Josh Blum
43b9d9d619
Fix C linkage for public symbols MSVC
...
The header symbols are declared extern "C",
however the the implementations are compiled in a C++ source.
The result is that the library symbols get C++ name mangled
and the resulting dll is missing all of the symbols from the header.
The fix was to add extern "C" in zmq.cpp and zmq_utils.cpp
2016-01-23 01:25:01 -08:00
Josh Blum
27a3f2aa92
Fix static library name overlap under MSVC
...
The static library was given the same OUTPUT_NAME as the dynamic library.
This leads to one library's build products overwriting the other.
The fix sets the name "libzmq-static" for the static library.
2016-01-23 01:21:29 -08:00
Pieter Hintjens
f080815487
Merge pull request #137 from bluca/ci-container-build
...
Enable container-based build
2015-08-17 13:07:44 +02:00
Luca Boccassi
aabe7983d1
Enable container-based build
...
Remove use of "sudo", build and install in local directory in order
to enable container-based CI builds
2015-08-17 01:37:39 +01:00
Richard Newton
bff7f02d15
Merge pull request #136 from bluca/fix-ci-timeout
...
Problem: CI may fail due to timeout. Fixes #135
2015-08-02 19:31:16 +01:00
Richard Newton
023da3af33
Merge pull request #132 from bluca/fix-autogen-libtool-detection
...
Solution: check for libtoolize in autogen. Fixes #131
2015-08-02 19:24:16 +01:00
Richard Newton
fb6a0b24f7
Merge pull request #107 from minrk/backport-721
...
backport stream socket empty frame fix
2015-08-02 19:23:48 +01:00
Luca Boccassi
a228da62b1
Problem: CI may fail due to timeout. Fixes #135
...
Solution: cherry-pick Pieter Hintjens commit a7a512ab from libzmq
repository to increase test timeouts to 250 msec.
2015-08-02 19:23:15 +01:00
Richard Newton
65911b3729
Merge pull request #134 from bluca/travis-ci-osx
...
Travis ci osx
2015-08-02 19:22:28 +01:00
Luca Boccassi
d6950515c3
Increase file limit in travis config
...
Test cases occasionally fail, especially on OSX, due to socket limit.
2015-08-02 19:15:24 +01:00
Luca Boccassi
0918934343
Add OSX build to travis config. Fixes #133
2015-08-02 19:01:46 +01:00
Luca Boccassi
9a71c02dcf
Do not use ldconfig in CI if running on OSX
...
ldconfig is not available on OSX, so Travis CI build fails
2015-08-02 18:51:25 +01:00
Luca Boccassi
8014a226f9
Solution: check for libtoolize in autogen. Fixes #131
...
Autogen.sh looks for the libtool command as a mean to check if
libtool is available. But distributions like Debian and Ubuntu have
split the libtool package, and the libtool script is now in a
separate package. The solution is to look for the libtoolize command
too before failing, which is what the Autotools chain actually needs
on Linux. Keep checking for libtool to be compatible with OSX, where
the opposite is true.
2015-08-01 12:42:33 +01:00
Pieter Hintjens
ed0dd6a3c4
Merge pull request #130 from leonarf/patch-1
...
THREAD PRIORITY option documentation
2015-07-16 14:07:17 +02:00
leonarf
630f991bfa
THREAD PRIORITY option documentation
...
Documentation about ZMQ_THREAD_PRIORITY and ZMQ_THREAD_SCHED_POLICY context's option.
2015-07-16 13:52:11 +02:00
Pieter Hintjens
7c3e0187be
Merge pull request #129 from calid/master
...
Updated NEWS
2015-06-29 23:36:36 +02:00
Dylan Cali
1b61fccb09
Updated NEWS
2015-06-29 02:37:45 -05:00
Pieter Hintjens
42007dd754
Merge pull request #128 from calid/libzmq-949-backport
...
backport zeromq/libzmq#949 fixes to 4-x stable
2015-06-29 08:06:44 +02:00
Dylan Cali
d2574dd45f
backport zeromq/libzmq@09e7416
...
fixes zmq_unbind failing for wildcard endpoints
2015-06-28 23:26:19 -05:00
Dylan Cali
f1cec450db
backport zeromq/libzmq@54e0fde
...
fixes zmq_unbind failing with ENOENT
2015-06-28 23:25:48 -05:00
Dylan Cali
8d59f91acd
add tests for zeromq/libzmq#949
2015-06-28 23:25:48 -05:00
Min RK
190e737abf
Merge pull request #127 from calid/ignore-test_proxy_single_socket
...
add test_proxy_single_socket to gitignore
2015-06-28 17:56:15 -07:00
Dylan Cali
35de168c7e
add test_proxy_single_socket to gitignore
2015-06-28 19:43:15 -05:00
Pieter Hintjens
de7895bd55
Merge pull request #125 from hintjens/master
...
Updated version to 4.0.8 for next release
2015-06-15 12:04:47 +02:00
Pieter Hintjens
5c2fb5f792
Updated version to 4.0.8 for next release
2015-06-15 12:04:20 +02:00
Pieter Hintjens
ba8f58ecfc
Merge pull request #124 from hintjens/master
...
Updated NEWS for release 4.0.7
v4.0.7
2015-06-15 11:56:57 +02:00
Pieter Hintjens
e8c4e77088
Updated NEWS for release 4.0.7
2015-06-15 11:56:15 +02:00
Pieter Hintjens
3f6936ecfd
Merge pull request #123 from minrk/4.0.7
...
bump version to 4.0.7
2015-06-08 09:03:01 +02:00
Min RK
3f12984eaa
bump version to 4.0.7
2015-06-07 21:28:11 -07:00
Pieter Hintjens
02eb472c0a
Merge pull request #122 from minrk/proxy-poll
...
backport fix for #1428
2015-06-07 21:37:27 +02:00
Min RK
3d6f11e56d
backport stream socket empty frame fix
...
backport of zeromq/libzmq#721
In the discussion, it was decided to backport, but that never actually happened.
test file was renamed after the above PR, so the version from master is pulled in here.
2015-06-07 11:20:27 -07:00
Min RK
c8feda9e19
test proxy with single REP socket
2015-06-07 11:16:38 -07:00
Min RK
9de7eeb467
don't check POLLOUT for single-socket proxies
2015-06-07 11:14:25 -07:00
Pieter Hintjens
d4994cfe1c
Merge pull request #121 from minrk/pollout
...
fix scope of itemsout poll
2015-06-05 23:23:18 +02:00
Min RK
286c6f93ee
test that proxy messages are received
2015-06-05 13:45:23 -07:00
Min RK
0f10ef1b38
fix scope of itemsout poll
...
indentation was correct, but poll was inside `if control`,
causing it to only be called if there is a control message.
This would cause proxy messages to only be delivered after a control message had been sent.
2015-06-05 13:45:10 -07:00
Pieter Hintjens
1a0cceac43
Merge pull request #120 from junovitch/master
...
Add missing newline to test_proxy_terminate.cpp to fix compiling with…
2015-06-05 12:23:23 +02:00
Jason Unovitch
2ac32f8c49
Add missing newline to test_proxy_terminate.cpp to fix compiling with Clang's -Werror,-Wnewline-eof
2015-06-04 19:37:47 -04:00
Pieter Hintjens
cf6e78ff82
Updated NEWS for 4.0.6 release
v4.0.6
2015-06-02 12:20:31 +02:00
Pieter Hintjens
cfcebb3605
Merge pull request #118 from mditzel/master
...
Fix for issue #117 .
2015-05-28 11:08:22 +02:00
Maarten Ditzel
509c746852
Also setting FD_SETSIZE to 1024 when using mingw.
2015-05-28 09:19:23 +02:00
Pieter Hintjens
10c54d122b
Merge pull request #116 from rikvdh/master
...
Fix another degradation, CPU maxes out when POLLOUT is set
2015-05-27 15:31:19 +02:00
Rik van der Heijden
95019b00a0
Fix another degradation, CPU maxes out when POLLOUT is set because poll exits on POLLOUT and doesn't wait for POLLIN
2015-05-27 14:14:37 +02:00
Pieter Hintjens
60568f2b30
Merge pull request #115 from rikvdh/master
...
Fix degradation from #1382 , POLLOUT was tested but not requested
2015-05-24 22:59:23 +02:00
Rik van der Heijden
683059d3a2
Fix degradation from #1382 , POLLOUT was tested but not requested
2015-05-24 22:37:24 +02:00
Pieter Hintjens
1a86783d42
Merge pull request #114 from hintjens/master
...
Updated NEWS
2015-05-01 21:12:54 +02:00
Pieter Hintjens
b2d444dc58
Updated NEWS
2015-05-01 21:12:31 +02:00
Pieter Hintjens
95ba372e60
Merge pull request #113 from rikvdh/master
...
Backport issue zeromq/libzmq#1382 & fix for issue #88
2015-05-01 21:11:45 +02:00
Rik van der Heijden
4bba965d98
Problem: zmq_proxy_steerable didnt act on PAUSE/RESUME (fixes issue #88 )
2015-05-01 20:57:40 +02:00
Rik van der Heijden
8a9fece30a
Backport zeromq/libzmq#1382 : Do not send data to backend when there are no listeners (+ test)
2015-05-01 20:51:37 +02:00
Pieter Hintjens
399b71cbad
Merge pull request #112 from hintjens/master
...
Fix for #1384
2015-05-01 08:45:16 +02:00
Pieter Hintjens
1c139eb42f
Updated NEWS for #1389
2015-05-01 08:44:20 +02:00
Martin Hurton
a1d1222dcc
pub: Don't delay pipe termination
2015-05-01 08:43:53 +02:00
Martin Hurton
812c2016b1
push: Don't delay pipe termination
2015-05-01 08:43:49 +02:00
Pieter Hintjens
3d13448a33
Merge pull request #111 from hintjens/master
...
Problem: shutdown asserts if WSASTARUP wasn't done previously
2015-04-22 00:29:01 +03:00
Pieter Hintjens
b589fb98b8
Problem: shutdown asserts if WSASTARUP wasn't done previously
...
This is a silly assertion that causes problems if libzmq.dll is
called in some esoteric ways.
Solution: if the shutdown code detects WSANOTINITIALISED, then
exit silently.
Fixes #1377
Fixes #1144
Conflicts:
src/signaler.cpp
2015-04-21 23:27:54 +02:00
Pieter Hintjens
5cd98ee7cd
Merge pull request #108 from calid/docfix-zmq-msg-init
...
doc: zmq_msg_init does not set errno
2015-03-15 11:27:15 +01:00
Dylan Cali
749dd8ce86
doc: zmq_msg_init does not set errno
...
In fact it always returns zero.
Backport of zeromq/libzmq#1368
2015-03-15 04:03:01 -05:00
Pieter Hintjens
9513148e27
Merge pull request #106 from hintjens/master
...
Fixed issue #1362
2015-02-20 09:15:21 +01:00
Pieter Hintjens
1dc65d360a
Updated news for #1362
2015-02-20 09:13:20 +01:00
Martin Hurton
d8d9d17b21
Adjust number of sent messages on hiccups
...
Not adjusting the sent message count may lead to situation when SUB
socket does not forward its subscriptions.
2015-02-20 09:12:25 +01:00
Pieter Hintjens
3d353659f7
Merge pull request #105 from minrk/libsodium-no
...
Problem: cannot prevent linking against libsodium on default path
2015-02-17 07:33:28 +01:00
Min RK
faaf455026
allow --without-libsodium
...
and `--with-libsodium=no` to disable linking against libsodium.
Without this patch, it is not possible to disable linking with libsodium present on the default path.
2015-02-16 14:59:54 -08:00
Pieter Hintjens
b6e3e0f601
Merge pull request #101 from hintjens/master
...
Problem: issue #1273 , protocol downgrade attack
2014-12-05 09:08:38 +01:00
Pieter Hintjens
77ef79e3b5
Problem: issue #1273 , protocol downgrade attack
...
Solution: backport fix from libzmq master. Also backported test
cases.
2014-12-05 09:08:02 +01:00
Pieter Hintjens
f6968ecd41
Merge pull request #100 from hintjens/master
...
Problem: zmq_ctx_term has insane behavior by default
2014-11-06 10:58:02 +01:00
Pieter Hintjens
a19682307f
Problem: zmq_ctx_term has insane behavior by default
...
Solution: document this with a clear warning. It would be
nicer perhaps to change the default LINGER to e.g. a few
seconds. However this could break existing applications.
2014-11-06 10:56:57 +01:00
Pieter Hintjens
f584947368
Updated version for next release
2014-10-14 10:23:00 +02:00
Pieter Hintjens
98df4b6182
Merge pull request #97 from hintjens/master
...
Updated NEWS for 4.0.5
v4.0.5
2014-10-14 10:06:24 +02:00
Pieter Hintjens
9be6c076cb
Updated NEWS for 4.0.5
2014-10-14 10:05:46 +02:00
Pieter Hintjens
47227672ef
Merge pull request #95 from ceph/master
...
Spec file fixes: missing manpages/binaries, renamed library files, doc build requirements
2014-10-01 07:47:45 +02:00
Dan Mick
2d7614961c
zeromq.spec.in: missing manpage files
...
Signed-off-by: Dan Mick <dmick@redhat.com>
2014-09-30 20:06:12 -07:00
Dan Mick
87b35ded47
zeromq.spec.in: shared library version bump
...
Signed-off-by: Dan Mick <dmick@redhat.com>
2014-09-30 20:06:12 -07:00
Dan Mick
93096d461c
zeromq.spec.in: missing binary curve_keygen
...
Signed-off-by: Dan Mick <dmick@redhat.com>
2014-09-30 20:06:12 -07:00