Skip to content

Commit 128be13

Browse files
committed
Regenerate artifacts.
1 parent 3f3762a commit 128be13

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

configure.ac

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -122,17 +122,17 @@ AC_MSG_RESULT([$enable_isystem])
122122

123123
# Check dependencies.
124124
#==============================================================================
125-
# Require Boost of at least version 1.57.0 and output ${boost_CPPFLAGS/LDFLAGS}.
125+
# Require Boost of at least version 1.62.0 and output ${boost_CPPFLAGS/LDFLAGS}.
126126
#------------------------------------------------------------------------------
127127
AS_CASE([${CC}], [*],
128-
[AX_BOOST_BASE([1.57.0],
128+
[AX_BOOST_BASE([1.62.0],
129129
[AC_SUBST([boost_CPPFLAGS], [${BOOST_CPPFLAGS}])
130130
AC_SUBST([boost_ISYS_CPPFLAGS], [`echo ${BOOST_CPPFLAGS} | $SED s/^-I/-isystem/g | $SED s/' -I'/' -isystem'/g`])
131131
AC_SUBST([boost_LDFLAGS], [${BOOST_LDFLAGS}])
132132
AC_MSG_NOTICE([boost_CPPFLAGS : ${boost_CPPFLAGS}])
133133
AC_MSG_NOTICE([boost_ISYS_CPPFLAGS : ${boost_ISYS_CPPFLAGS}])
134134
AC_MSG_NOTICE([boost_LDFLAGS : ${boost_LDFLAGS}])],
135-
[AC_MSG_ERROR([Boost 1.57.0 or later is required but was not found.])])])
135+
[AC_MSG_ERROR([Boost 1.62.0 or later is required but was not found.])])])
136136

137137
AS_CASE([${enable_isystem}],[yes],
138138
[AC_SUBST([boost_BUILD_CPPFLAGS], [${boost_ISYS_CPPFLAGS}])],
@@ -146,14 +146,14 @@ AS_CASE([${with_tests}], [yes],
146146
AC_MSG_NOTICE([boost_unit_test_framework_LIBS : ${boost_unit_test_framework_LIBS}])],
147147
[AC_SUBST([boost_unit_test_framework_LIBS], [])])
148148

149-
# Require zmq of at least version 4.2.0 and output ${zmq_CPPFLAGS/LIBS/PKG}.
149+
# Require zmq of at least version 4.2.5 and output ${zmq_CPPFLAGS/LIBS/PKG}.
150150
#------------------------------------------------------------------------------
151-
PKG_CHECK_MODULES([zmq], [libzmq >= 4.2.0],
152-
[zmq_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libzmq >= 4.2.0" 2>/dev/null`"
153-
zmq_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libzmq >= 4.2.0" 2>/dev/null`"],
151+
PKG_CHECK_MODULES([zmq], [libzmq >= 4.2.5],
152+
[zmq_INCLUDEDIR="`$PKG_CONFIG --variable=includedir "libzmq >= 4.2.5" 2>/dev/null`"
153+
zmq_OTHER_CFLAGS="`$PKG_CONFIG --cflags-only-other "libzmq >= 4.2.5" 2>/dev/null`"],
154154
[zmq_INCLUDEDIR=""
155155
zmq_OTHER_CFLAGS=""])
156-
AC_SUBST([zmq_PKG], ['libzmq >= 4.2.0'])
156+
AC_SUBST([zmq_PKG], ['libzmq >= 4.2.5'])
157157
AC_SUBST([zmq_CPPFLAGS], [${zmq_CFLAGS}])
158158
AS_IF([test x${zmq_INCLUDEDIR} != "x"],
159159
[AC_SUBST([zmq_ISYS_CPPFLAGS], ["-isystem${zmq_INCLUDEDIR} ${zmq_OTHER_CFLAGS}"])],

install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ BUILD_DIR="build-libbitcoin-protocol"
3434

3535
# ZMQ archive.
3636
#------------------------------------------------------------------------------
37-
ZMQ_URL="https://github.com/zeromq/libzmq/releases/download/v4.2.0/zeromq-4.2.0.tar.gz"
38-
ZMQ_ARCHIVE="zeromq-4.2.0.tar.gz"
37+
ZMQ_URL="https://github.com/zeromq/libzmq/releases/download/v4.2.5/zeromq-4.2.5.tar.gz"
38+
ZMQ_ARCHIVE="zeromq-4.2.5.tar.gz"
3939

4040
# Boost archive.
4141
#------------------------------------------------------------------------------
42-
BOOST_URL="http://downloads.sourceforge.net/project/boost/boost/1.57.0/boost_1_57_0.tar.bz2"
43-
BOOST_ARCHIVE="boost_1_57_0.tar.bz2"
42+
BOOST_URL="http://downloads.sourceforge.net/project/boost/boost/1.62.0/boost_1_62_0.tar.bz2"
43+
BOOST_ARCHIVE="boost_1_62_0.tar.bz2"
4444

4545

4646
# Define utility functions.

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.0 libbitcoin >= 3.4.0
28+
Requires: libzmq >= 4.2.5 libbitcoin >= 3.4.0
2929

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

0 commit comments

Comments
 (0)