From: Jim Jagielski Date: Tue, 3 Apr 2001 20:38:10 +0000 (+0000) Subject: Minor sync-up of how httpd-2.0 and apr handles X-Git-Tag: 2.0.16~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07fed580c2bbcb31b31e2e6ee9e3e7195e36aa95;p=thirdparty%2Fapache%2Fhttpd.git Minor sync-up of how httpd-2.0 and apr handles these. -g is more an Optimization flag, and the others are more compiler flags git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88701 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure.in b/configure.in index 3ccb8393fc6..4d02dca1bb7 100644 --- a/configure.in +++ b/configure.in @@ -149,10 +149,10 @@ AC_ARG_WITH(port,[ --with-port=PORT Port on which to listen (default is [PORT=80]) AC_ARG_ENABLE(debug,[ --enable-debug Turn on debugging and compile time warnings], - [if test "$GCC" = "yes"; then CFLAGS="$CFLAGS -g -Wall"; else CFLAGS="$CFLAGS -g"; fi]) + [OPTIM="$OPTIM -g"; if test "$GCC" = "yes"; then CFLAGS="$CFLAGS -Wall"; fi]) AC_ARG_ENABLE(maintainer-mode,[ --enable-maintainer-mode Turn on debugging and compile time warnings], - [if test "$GCC" = "yes"; then CFLAGS="$CFLAGS -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -DAP_DEBUG"; else CFLAGS="$CFLAGS -g"; fi]) + [OPTIM="$OPTIM -g"; if test "$GCC" = "yes"; then CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -DAP_DEBUG"; fi]) APACHE_ENABLE_LAYOUT APACHE_ENABLE_MODULES