From: Matthias Braun Date: Tue, 21 Sep 2004 11:04:01 +0000 (+0000) Subject: fix check for debug flag X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=6feff564f44ba7f2efc6bd171647c20977cc144e;p=supertux.git fix check for debug flag SVN-Revision: 1955 --- diff --git a/configure.ac b/configure.ac index cf81dc0e6..302335601 100644 --- a/configure.ac +++ b/configure.ac @@ -48,9 +48,10 @@ fi AC_MSG_CHECKING(for debug mode) AC_ARG_ENABLE(debug, - AC_HELP_STRING([--enable-debug], [enable debugging mode]),, enable_debug="no") -if test "x${enable_debug}" != "xno"; then - CXXFLAGS="$CXXFLAGS -Wall -Werror -DDEBUG -O3 -g" + AC_HELP_STRING([--enable-debug], [enable debugging mode]), + [enable_debug=$enableval], [enable_debug=no]) +if test "$enable_debug" = "yes"; then + CXXFLAGS="$CXXFLAGS -Wall -Werror -DDEBUG -O0 -g3" AC_MSG_RESULT([enabled]) else AC_MSG_RESULT([disabled])