From d98e4a9bedf4694fe0f822afabe630ce3a8acf9c Mon Sep 17 00:00:00 2001 From: Dmitry Kasatkin Date: Wed, 1 Feb 2012 14:38:54 +0200 Subject: [PATCH] Added missing CFLAGS Added missing CFLAGS Signed-off-by: Dmitry Kasatkin --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 51ba559..5abcb04 100644 --- a/configure.ac +++ b/configure.ac @@ -33,7 +33,7 @@ AC_CHECK_HEADERS(openssl/conf.h) #debug support - yes for a while PKG_ARG_ENABLE(debug, "yes", DEBUG, [Enable Debug support]) if test $pkg_cv_enable_debug = yes; then - CFLAGS="-g -O1 -Wall -Wstrict-prototypes -pipe" + CFLAGS="$CFLAGS -g -O1 -Wall -Wstrict-prototypes -pipe" else CFLAGS="$CFLAGS -Wall -Wstrict-prototypes -pipe -fomit-frame-pointer" fi