gstein 01/03/27 02:48:03
Modified: . configure.in
Log:
Use --enable-* rather than --with-* for the debug options.
Submitted by: Mo DeJong <[EMAIL PROTECTED]>
Revision Changes Path
1.262 +2 -2 apr/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/apr/configure.in,v
retrieving revision 1.261
retrieving revision 1.262
diff -u -u -r1.261 -r1.262
--- configure.in 2001/03/26 16:26:49 1.261
+++ configure.in 2001/03/27 10:48:02 1.262
@@ -86,10 +86,10 @@
'
echo $ac_n "${nl}Check for compiler flags..."
-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"; else
CFLAGS="$CFLAGS -g"; fi])
dnl # this is the place to put specific options for platform/compiler