summaryrefslogtreecommitdiff
path: root/m4/openbox.m4
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-05-29 15:30:05 +0000
committerDana Jansens <danakj@orodu.net>2003-05-29 15:30:05 +0000
commite6255a026420d69cf01726f1720e3222965b0860 (patch)
tree54be0b1ccc44e85423d170ff7b439cfe6f2c7b44 /m4/openbox.m4
parent3424de66b2fa48f259e3892da3ad0a6427f389b4 (diff)
look for 'alpha' and 'beta' releases also
Diffstat (limited to 'm4/openbox.m4')
-rw-r--r--m4/openbox.m415
1 files changed, 13 insertions, 2 deletions
diff --git a/m4/openbox.m4 b/m4/openbox.m4
index c5bafc5c..319ed7b4 100644
--- a/m4/openbox.m4
+++ b/m4/openbox.m4
@@ -18,11 +18,19 @@ AC_DEFUN([OB_DEBUG],
[ --enable-debug build a debug version default=no],
[DEBUG=$enableval], [DEBUG="no"])
- # cvs builds are always debug
+ # these special builds are always debug
CVS=""
- test "${PACKAGE_VERSION%*cvs}" != "$PACKAGE_VERSION" && CVS="yes"
+ test "${PACKAGE_VERSION%*cvs*}" != "$PACKAGE_VERSION" && CVS="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
MSG="DEBUG"
else
@@ -31,6 +39,9 @@ AC_DEFUN([OB_DEBUG],
if test "$CVS" = "yes"; then
MSG="$MSG (CVS build)"
fi
+ if test "$TEST" = "yes"; then
+ MSG="$MSG (test release)"
+ fi
if test "$STRICT" = "yes"; then
MSG="$MSG with strict ANSI compliance"
fi