cvs builds are always debug

This commit is contained in:
Dana Jansens 2003-01-11 04:36:25 +00:00
parent 346151534b
commit 0f16855abc

View file

@ -10,6 +10,10 @@ AC_DEFUN([OB_DEBUG],
AC_ARG_ENABLE([debug],
[ --enable-debug build a debug version default=no],
[DEBUG=$enableval],[])
# cvs builds are always debug
test "${VERSION#cvs}" != "$VERSION" && DEBUG = "yes"
if test "$DEBUG" = "yes"; then
AC_MSG_RESULT([debug])
AC_DEFINE([DEBUG], [1], [Creating a debug build])