]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
switch to --enable-* rather than --with-* for the debug options
authorGreg Stein <gstein@apache.org>
Tue, 27 Mar 2001 10:54:09 +0000 (10:54 +0000)
committerGreg Stein <gstein@apache.org>
Tue, 27 Mar 2001 10:54:09 +0000 (10:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88592 13f79535-47bb-0310-9956-ffa450edef68

configure.in

index e5254f6dfd3939d11f8ee6aade409372c4602cc8..74e64f211f5178a95f49c14e904dfd96ac849e87 100644 (file)
@@ -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