You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2001/04/03 22:38:11 UTC

cvs commit: httpd-2.0 configure.in

jim         01/04/03 13:38:11

  Modified:    .        configure.in
  Log:
  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
  
  Revision  Changes    Path
  1.140     +2 -2      httpd-2.0/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/configure.in,v
  retrieving revision 1.139
  retrieving revision 1.140
  diff -u -r1.139 -r1.140
  --- configure.in	2001/04/03 18:37:03	1.139
  +++ configure.in	2001/04/03 20:38:10	1.140
  @@ -149,10 +149,10 @@
   	[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