diff options
Diffstat (limited to 'm4/openbox.m4')
| -rw-r--r-- | m4/openbox.m4 | 16 |
1 files 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 |
