look for 'alpha' and 'beta' releases also
This commit is contained in:
parent
3424de66b2
commit
e6255a0264
1 changed files with 13 additions and 2 deletions
|
@ -18,11 +18,19 @@ AC_DEFUN([OB_DEBUG],
|
||||||
[ --enable-debug build a debug version default=no],
|
[ --enable-debug build a debug version default=no],
|
||||||
[DEBUG=$enableval], [DEBUG="no"])
|
[DEBUG=$enableval], [DEBUG="no"])
|
||||||
|
|
||||||
# cvs builds are always debug
|
# these special builds are always debug
|
||||||
CVS=""
|
CVS=""
|
||||||
test "${PACKAGE_VERSION%*cvs}" != "$PACKAGE_VERSION" && CVS="yes"
|
test "${PACKAGE_VERSION%*cvs*}" != "$PACKAGE_VERSION" && CVS="yes"
|
||||||
test "$CVS" = "yes" && DEBUG="yes"
|
test "$CVS" = "yes" && DEBUG="yes"
|
||||||
|
|
||||||
|
TEST=""
|
||||||
|
test "${PACKAGE_VERSION%*alpha*}" != "$PACKAGE_VERSION" && TEST="yes"
|
||||||
|
test "$TEST" = "yes" && DEBUG="yes"
|
||||||
|
|
||||||
|
TEST=""
|
||||||
|
test "${PACKAGE_VERSION%*beta*}" != "$PACKAGE_VERSION" && TEST="yes"
|
||||||
|
test "$TEST" = "yes" && DEBUG="yes"
|
||||||
|
|
||||||
if test "$DEBUG" = "yes"; then
|
if test "$DEBUG" = "yes"; then
|
||||||
MSG="DEBUG"
|
MSG="DEBUG"
|
||||||
else
|
else
|
||||||
|
@ -31,6 +39,9 @@ AC_DEFUN([OB_DEBUG],
|
||||||
if test "$CVS" = "yes"; then
|
if test "$CVS" = "yes"; then
|
||||||
MSG="$MSG (CVS build)"
|
MSG="$MSG (CVS build)"
|
||||||
fi
|
fi
|
||||||
|
if test "$TEST" = "yes"; then
|
||||||
|
MSG="$MSG (test release)"
|
||||||
|
fi
|
||||||
if test "$STRICT" = "yes"; then
|
if test "$STRICT" = "yes"; then
|
||||||
MSG="$MSG with strict ANSI compliance"
|
MSG="$MSG with strict ANSI compliance"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue