summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-05-20 05:05:34 +0000
committerDana Jansens <danakj@orodu.net>2003-05-20 05:05:34 +0000
commit14cab4f9331570ae678096a0ed90f6ac17c56524 (patch)
treed6af35c2a8153997d95a9f4dba3b37c311437650 /m4
parent644d6295014caee6039badeec4817d9856dba97c (diff)
smarter default debug value :)
Diffstat (limited to 'm4')
-rw-r--r--m4/openbox.m416
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