Move the --enable-debug check up above all compiler checks.
authorMichael Adam <obnox@samba.org>
Tue, 19 Feb 2008 15:35:55 +0000 (16:35 +0100)
committerMichael Adam <obnox@samba.org>
Tue, 19 Feb 2008 16:39:40 +0000 (17:39 +0100)
Michael
(This used to be commit fb74f8dd6a612db0d79b091dd9972bb3204818fb)

source3/configure.in

index e9b93eeb4ba2642cf29a0a3eccd7973be434627f..4a9dc0c1392f9d6576465e26669f5cc3a18b20ea 100644 (file)
@@ -267,6 +267,15 @@ AC_SUBST(cachedir)
 AC_SUBST(rootsbindir)
 AC_SUBST(pammodulesdir)
 
+## check for --enable-debug first before checking CFLAGS before
+## so that we don't mix -O and -g
+debug=no
+AC_ARG_ENABLE(debug,
+[AS_HELP_STRING([--enable-debug], [Turn on compiler debugging information (default=no)])],
+    [if eval "test x$enable_debug = xyes"; then
+       debug=yes
+    fi])
+
 AC_ARG_WITH(cfenc,
 [AS_HELP_STRING([--with-cfenc=HEADERDIR], [Use internal CoreFoundation encoding API for optimization (Mac OS X/Darwin only)])],
 [
@@ -408,15 +417,6 @@ AC_SUBST(EXTRA_ALL_TARGETS)
 AC_SUBST(CONFIG_LIBS)
 AC_SUBST(NSCD_LIBS)
 
-## check for --enable-debug first before checking CFLAGS before
-## so that we don't mix -O and -g
-debug=no
-AC_ARG_ENABLE(debug,
-[AS_HELP_STRING([--enable-debug], [Turn on compiler debugging information (default=no)])],
-    [if eval "test x$enable_debug = xyes"; then
-       debug=yes
-    fi])
-
 # compile with optimization and without debugging by default, but
 # allow people to set their own preference.
 # do this here since AC_CACHE_CHECK apparently sets the CFLAGS to "-g -O2"