From: Victor Julien Date: Fri, 8 Jul 2016 09:26:24 +0000 (+0200) Subject: configure: require libhtp 0.5.20 X-Git-Tag: suricata-3.1.1~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37b10c13c104d2b21d964378860d8c6ff299810d;p=thirdparty%2Fsuricata.git configure: require libhtp 0.5.20 Ticket #1839 --- diff --git a/configure.ac b/configure.ac index d553ff3532..462058477b 100644 --- a/configure.ac +++ b/configure.ac @@ -1251,12 +1251,12 @@ echo exit 1 fi - PKG_CHECK_MODULES(LIBHTPMINVERSION, [htp >= 0.5.5],[libhtp_minver_found="yes"],[libhtp_minver_found="no"]) + PKG_CHECK_MODULES(LIBHTPMINVERSION, [htp >= 0.5.20],[libhtp_minver_found="yes"],[libhtp_minver_found="no"]) if test "$libhtp_minver_found" = "no"; then PKG_CHECK_MODULES(LIBHTPDEVVERSION, [htp = 0.5.X],[libhtp_devver_found="yes"],[libhtp_devver_found="no"]) if test "$libhtp_devver_found" = "no"; then echo - echo " ERROR! libhtp was found but it is neither >= 0.5.5, nor the dev 0.5.X" + echo " ERROR! libhtp was found but it is neither >= 0.5.20, nor the dev 0.5.X" echo exit 1 fi