all repos — openbox @ 182cfb2145e8c1d50471060db4908f7f7531c063

openbox fork - make it a bit more like ryudo

caps for giving the build target. show it at the end
Dana Jansens danakj@orodu.net
commit

182cfb2145e8c1d50471060db4908f7f7531c063

parent

3f3f8a17e52882964942464e36e15a9cd4bb6fa2

2 files changed, 7 insertions(+), 2 deletions(-)

jump to
M configure.acconfigure.ac

@@ -56,6 +56,11 @@ AC_MSG_RESULT

AC_MSG_RESULT([$PACKAGE version $VERSION configured successfully.]) AC_MSG_RESULT +if test "$DEBUG" = "yes"; then + AC_MSG_RESULT([Creating a DEBUG build.]) +else + AC_MSG_RESULT([Creating a RELEASE build.]) +fi AC_MSG_RESULT([Using '$prefix' for installation.]) AC_MSG_RESULT([Using '$CXX' for C++ compiler.]) AC_MSG_RESULT([Building with '$CXXFLAGS' for C++ compiler flags.])
M m4/openbox.m4m4/openbox.m4

@@ -16,10 +16,10 @@ test "${VERSION%*cvs}" != "$VERSION" && DEBUG="yes"

if test "$DEBUG" = "yes"; then AC_MSG_RESULT([debug]) - AC_DEFINE([DEBUG], [1], [Creating a debug build]) + AC_DEFINE([DEBUG], [1], [Creating a DEBUG build]) else AC_MSG_RESULT([release]) - AC_DEFINE([NDEBUG], [1], [Creating a release build]) + AC_DEFINE([NDEBUG], [1], [Creating a RELEASE build]) fi ])