From d09fcc1442e8dc1cca0b32692d5e8e523b140a1f Mon Sep 17 00:00:00 2001 From: Greg Stein Date: Tue, 27 Mar 2001 10:54:09 +0000 Subject: [PATCH] switch to --enable-* rather than --with-* for the debug options git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88592 13f79535-47bb-0310-9956-ffa450edef68 --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index e5254f6dfd..74e64f211f 100644 --- a/configure.in +++ b/configure.in @@ -125,10 +125,10 @@ AC_ARG_WITH(port,[ --with-port=PORT Port on which to listen (default is [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-port requires a value (the TCP port number)'); else PORT="$withval"; fi], [PORT=80]) -AC_ARG_WITH(debug,[ --with-debug Turn on debugging and compile time warnings], +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]) -AC_ARG_WITH(maintainer-mode,[ --with-maintainer-mode Turn on debugging and compile time warnings], +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]) APACHE_ENABLE_LAYOUT -- 2.40.0