summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordeva <deva>2006-08-12 14:32:19 +0000
committerdeva <deva>2006-08-12 14:32:19 +0000
commit74aa6132310709742fa631a7791e4586aa3955cf (patch)
tree064e85f039e144b60d312383753c44038918ecad
parent1abb2b072dbab88691f314bcdebf6dc681aae6ba (diff)
Oups... flipped the default value of the debug flag.
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 8645aaa..d17c7c9 100644
--- a/configure.in
+++ b/configure.in
@@ -19,7 +19,7 @@ AC_DEFINE_UNQUOTED(ETC, "$prefix/etc/miav", [The path to the config files])
AC_DEFINE_UNQUOTED(PIXMAPS, "$prefix/share/pixmaps", [The path to the pixmap files])
AC_ARG_WITH(debug, [ --with-debug Build with debugging (-g -Wall -Werror)])
-if test x$with_debug != xno && test -z "$DEBUG"; then
+if test x$with_debug != xyes && test -z "$DEBUG"; then
CXXFLAGS="$CXXFLAGS -g -Wall -Werror"
dnl =====================