From 6f80821ff00f4d377e6f9920ed7559d051015ff8 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Tue, 27 Aug 2019 11:55:11 +0200 Subject: [PATCH] configure: bump minimum htp to 0.5.30 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 4b0dbfd4aa..482ad3f27c 100644 --- a/configure.ac +++ b/configure.ac @@ -1638,12 +1638,12 @@ echo exit 1 fi - PKG_CHECK_MODULES(LIBHTPMINVERSION, [htp >= 0.5.20],[libhtp_minver_found="yes"],[libhtp_minver_found="no"]) + PKG_CHECK_MODULES(LIBHTPMINVERSION, [htp >= 0.5.30],[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.20, nor the dev 0.5.X" + echo " ERROR! libhtp was found but it is neither >= 0.5.30, nor the dev 0.5.X" echo exit 1 fi