X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=m4%2Fopenbox.m4;h=7c19ab4b1bfb0333eb3101a4fbc4e64238092c00;hb=438924b2ad22f6935514bcd4e15d20e73ab004cb;hp=d3e522cd9906741eaa3584693aab1bc77e4fdb01;hpb=d1ccdfc97a1035f461c987b09b35ebc7bffa471d;p=chaz%2Fopenbox diff --git a/m4/openbox.m4 b/m4/openbox.m4 index d3e522cd..7c19ab4b 100644 --- a/m4/openbox.m4 +++ b/m4/openbox.m4 @@ -18,10 +18,15 @@ 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 "$CVS" = "yes" && DEFAULTDEBUG="yes" + test "${PACKAGE_VERSION%*cvs*}" != "$PACKAGE_VERSION" && CVS="yes" + test "$CVS" = "yes" && DEBUG="yes" + + TEST="" + test "${PACKAGE_VERSION%*alpha*}" != "$PACKAGE_VERSION" && TEST="yes" + test "${PACKAGE_VERSION%*beta*}" != "$PACKAGE_VERSION" && TEST="yes" + test "$TEST" = "yes" && DEBUG="yes" if test "$DEBUG" = "yes"; then MSG="DEBUG" @@ -31,6 +36,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