From 572ee0a6fd64e83690a4e65ef1acae082544a7e7 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 11 May 2020 09:53:38 +0200 Subject: [PATCH] build system: libzcmq version requirement needs to be bumped Thanks to Thomas Deutschmann for pointing this out. closes https://github.com/rsyslog/rsyslog/issues/3957 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index a8cb77a57..c178198e7 100644 --- a/configure.ac +++ b/configure.ac @@ -2234,7 +2234,7 @@ AC_ARG_ENABLE(imczmq, [enable_imczmq=no] ) if test "x$enable_imczmq" = "xyes"; then - PKG_CHECK_MODULES(CZMQ, libczmq >= 3.0.0) + PKG_CHECK_MODULES(CZMQ, libczmq >= 4.0.0) fi AM_CONDITIONAL(ENABLE_IMCZMQ, test x$enable_imczmq = xyes) @@ -2252,7 +2252,7 @@ AC_ARG_ENABLE(omczmq, [enable_omczmq=no] ) if test "x$enable_omczmq" = "xyes"; then - PKG_CHECK_MODULES(CZMQ, libczmq >= 3.0.2) + PKG_CHECK_MODULES(CZMQ, libczmq >= 4.0.0) fi AM_CONDITIONAL(ENABLE_OMCZMQ, test x$enable_omczmq = xyes)