From 4ed0ca14bc8c81afbc4b94dfab3aa76465c68ef4 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Tue, 31 May 2011 10:01:03 +0200 Subject: [PATCH] Change libhtp configure to not enable debug when suricata does. --- libhtp/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libhtp/configure.ac b/libhtp/configure.ac index 3debc326f2..8987ab8563 100644 --- a/libhtp/configure.ac +++ b/libhtp/configure.ac @@ -56,8 +56,8 @@ AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define) AC_CONFIG_MACRO_DIR([m4]) -AC_ARG_ENABLE(debug, [ --enable-debug Enable debug output], [ enable_debug=yes ]) -if test "$enable_debug" = "yes"; then +AC_ARG_ENABLE(htp-debug, [ --enable-htp-debug Enable debug output], [ enable_htp_debug=yes ]) +if test "$enable_htp_debug" = "yes"; then CFLAGS="${CFLAGS} -DHTP_DEBUG" echo "Debug mode enabled" fi