smarter default debug value :)
This commit is contained in:
parent
644d629501
commit
14cab4f933
1 changed files with 9 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue