Skip to content

Commit 08c9f8c

Browse files
authored
Merge pull request #171 from pmienk/issues/zmq_version
Regenerate artifacts with minimum ZeroMQ dependency 4.2.0.
2 parents 393aef4 + 9cd1269 commit 08c9f8c

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,10 @@ AS_CASE([${with_tests}], [yes],
122122
AC_MSG_NOTICE([boost_unit_test_framework_LIBS : ${boost_unit_test_framework_LIBS}])],
123123
[AC_SUBST([boost_unit_test_framework_LIBS], [])])
124124

125-
# Require zmq of at least version 4.2.3 and output ${zmq_CPPFLAGS/LIBS/PKG}.
125+
# Require zmq of at least version 4.2.0 and output ${zmq_CPPFLAGS/LIBS/PKG}.
126126
#------------------------------------------------------------------------------
127-
PKG_CHECK_MODULES([zmq], [libzmq >= 4.2.3])
128-
AC_SUBST([zmq_PKG], ['libzmq >= 4.2.3'])
127+
PKG_CHECK_MODULES([zmq], [libzmq >= 4.2.0])
128+
AC_SUBST([zmq_PKG], ['libzmq >= 4.2.0'])
129129
AC_SUBST([zmq_CPPFLAGS], [${zmq_CFLAGS}])
130130
AC_MSG_NOTICE([zmq_CPPFLAGS : ${zmq_CPPFLAGS}])
131131
AC_MSG_NOTICE([zmq_LIBS : ${zmq_LIBS}])

install.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#
1010
# Script options:
1111
# --build-boost Builds Boost libraries.
12+
# --build-zmq Build ZeroMQ libraries.
1213
# --build-dir=<path> Location of downloaded and intermediate files.
1314
# --prefix=<absolute-path> Library install location (defaults to /usr/local).
1415
# --disable-shared Disables shared library builds.
@@ -32,8 +33,8 @@ BUILD_DIR="build-libbitcoin-protocol"
3233

3334
# ZMQ archive.
3435
#------------------------------------------------------------------------------
35-
ZMQ_URL="https://github.com/zeromq/libzmq/releases/download/v4.2.3/zeromq-4.2.3.tar.gz"
36-
ZMQ_ARCHIVE="zeromq-4.2.3.tar.gz"
36+
ZMQ_URL="https://github.com/zeromq/libzmq/releases/download/v4.2.0/zeromq-4.2.0.tar.gz"
37+
ZMQ_ARCHIVE="zeromq-4.2.0.tar.gz"
3738

3839
# Boost archive.
3940
#------------------------------------------------------------------------------

libbitcoin-protocol.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Version: @PACKAGE_VERSION@
2525
#==============================================================================
2626
# Dependencies that publish package configuration.
2727
#------------------------------------------------------------------------------
28-
Requires: libzmq >= 4.2.3 libbitcoin >= 4.0.0
28+
Requires: libzmq >= 4.2.0 libbitcoin >= 4.0.0
2929

3030
# Include directory and any other required compiler flags.
3131
#------------------------------------------------------------------------------

0 commit comments

Comments
 (0)