We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 76206af + dfa2548 commit b6bc8c6Copy full SHA for b6bc8c6
scripts/build_libzmq.sh
@@ -21,7 +21,11 @@ test -d "${ZMQ_SRC_DIR}" || tar xzf zeromq-$ZMQ.tar.gz
21
cd "${ZMQ_SRC_DIR}"
22
23
test -f configure || ./autogen.sh
24
-./configure "--prefix=${ZMQ_PREFIX}" --with-relaxed --enable-static --disable-shared
+if [ "$ZMQ" = "4.1.6" ]; then
25
+ ./configure "--prefix=${ZMQ_PREFIX}" --with-relaxed --enable-static --disable-shared ;
26
+else
27
+ ./configure "--prefix=${ZMQ_PREFIX}" --disable-pedantic --enable-static --disable-shared ;
28
+fi
29
make -j 2
30
make install
31
0 commit comments