This commit is contained in:
Dana Jansens 2003-01-11 05:00:08 +00:00
parent 182cfb2145
commit 6741d0572d

View file

@ -15,11 +15,11 @@ AC_DEFUN([OB_DEBUG],
test "${VERSION%*cvs}" != "$VERSION" && DEBUG="yes" test "${VERSION%*cvs}" != "$VERSION" && DEBUG="yes"
if test "$DEBUG" = "yes"; then if test "$DEBUG" = "yes"; then
AC_MSG_RESULT([debug]) AC_MSG_RESULT([DEBUG])
AC_DEFINE([DEBUG], [1], [Creating a DEBUG build]) AC_DEFINE([DEBUG], [1], [Creating a debug build])
else else
AC_MSG_RESULT([release]) AC_MSG_RESULT([RELEASE])
AC_DEFINE([NDEBUG], [1], [Creating a RELEASE build]) AC_DEFINE([NDEBUG], [1], [Creating a release build])
fi fi
]) ])