From baa96c22e74b5f617b64d9f5ae21c52a4c4fa190 Mon Sep 17 00:00:00 2001 From: Sascha Hlusiak Date: Wed, 3 Oct 2012 18:53:00 +0200 Subject: configure: enable debug output code by default there are rare cases when disabling debug code gives any benefit but the lack of debugging output, which needs to be enabled anyway with the DebugLevel option --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 1bcc62a..b8c8851 100644 --- a/configure.ac +++ b/configure.ac @@ -76,9 +76,9 @@ AC_ARG_WITH(sdkdir, AC_SUBST(sdkdir) # Define a configure option to enable code debugging -AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug], - [Enable debugging (default: disabled)]), - [DEBUGGING=$enableval], [DEBUGGING=no]) +AC_ARG_ENABLE(debug, AS_HELP_STRING([--disable-debug], + [Disable debugging code (default: enabled)]), + [DEBUGGING=$enableval], [DEBUGGING=yes]) if test "x$DEBUGGING" = xyes; then AC_DEFINE(DEBUG, 1, [Enable debugging code]) fi -- cgit v1.2.3