From: Jim Jagielski Date: Mon, 31 Jan 2011 20:29:03 +0000 (+0000) Subject: A new mode that is maintainer + O0 (for better gdb) X-Git-Tag: 2.3.11~126 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f0e81c8fd7e546760ecad89b94982bf051572288;p=apache A new mode that is maintainer + O0 (for better gdb) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1065751 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure.in b/configure.in index 88ef769121..0f4142435f 100644 --- a/configure.in +++ b/configure.in @@ -526,6 +526,26 @@ AC_ARG_ENABLE(exception-hook,APACHE_HELP_STRING(--enable-exception-hook,Enable f ])dnl AC_ARG_ENABLE(maintainer-mode,APACHE_HELP_STRING(--enable-maintainer-mode,Turn on debugging and compile time warnings), +[ + APR_ADDTO(CPPFLAGS, -DAP_DEBUG) + if test "$GCC" = "yes"; then + APR_ADDTO(CFLAGS,[-Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -Wpointer-arith]) + AC_CACHE_CHECK([whether gcc accepts -Wdeclaration-after-statement], [ap_cv_cc_Wdas], [ + save_CFLAGS=$CFLAGS + CFLAGS="$CFLAGS -Wdeclaration-after-statement" + AC_COMPILE_IFELSE([int foo() { return 0; }], + [ap_cv_cc_Wdas=yes], [ap_cv_cc_Wdas=no]) + CFLAGS=$save_CFLAGS + ]) + if test "$ap_cv_cc_Wdas" = "yes"; then + APR_ADDTO(CFLAGS,[-Wdeclaration-after-statement]) + fi + elif test "$AIX_XLC" = "yes"; then + APR_ADDTO(CFLAGS,-qfullpath -qinitauto=FE -qcheck=all -qinfo=pro) + fi +])dnl + +AC_ARG_ENABLE(debugger-mode,APACHE_HELP_STRING(--enable-debugger-mode,Turn on debugging and compile time warnings and turn off optimization), [ APR_ADDTO(CPPFLAGS, -DAP_DEBUG) if test "$GCC" = "yes"; then