From 14cab4f9331570ae678096a0ed90f6ac17c56524 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 20 May 2003 05:05:34 +0000 Subject: [PATCH] smarter default debug value :) --- m4/openbox.m4 | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/m4/openbox.m4 b/m4/openbox.m4 index 0bebc7be..55988650 100644 --- a/m4/openbox.m4 +++ b/m4/openbox.m4 @@ -7,9 +7,16 @@ AC_DEFUN([OB_DEBUG], [ AC_MSG_CHECKING([build type]) + DEFAULTDEBUG="no" + + # cvs builds are always debug + CVS="" + test "${PACKAGE_VERSION%*cvs}" != "$PACKAGE_VERSION" && CVS="yes" + test "$CVS" = "yes" && DEFAULTDEBUG="yes" + AC_ARG_ENABLE([debug], - [ --enable-debug build a debug version default=yes], - [DEBUG=$enableval], [DEBUG="no"]) + [ --enable-debug build a debug version default=$DEFAULTDEBUG], + [DEBUG=$enableval], [DEBUG=$DEFAULTDEBUG]) AC_ARG_ENABLE([strict-ansi], [ --enable-strict-ansi Enable strict ANSI compliance build default=no], @@ -18,11 +25,6 @@ AC_DEFUN([OB_DEBUG], CFLAGS="$CFLAGS -ansi -pedantic -D_XOPEN_SOURCE" fi - # cvs builds are always debug - CVS="" - test "${PACKAGE_VERSION%*cvs}" != "$PACKAGE_VERSION" && CVS="yes" - test "$CVS" = "yes" && DEBUG="yes" - if test "$DEBUG" = "yes"; then MSG="DEBUG" else -- 2.39.2