=================================================================== RCS file: /home/cvsd/home/cvs/ep/configure.in,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- ep/configure.in 2002/04/24 19:35:52 1.7 +++ ep/configure.in 2002/05/27 16:47:35 1.8 @@ -1,4 +1,4 @@ -dnl $Id: configure.in,v 1.7 2002/04/24 19:35:52 host8 Exp $ +dnl $Id: configure.in,v 1.8 2002/05/27 16:47:35 jombik9 Exp $ dnl Process this file with autoconf to produce a configure script. AC_INIT(src/main.c, 1.0, platon@pobox.sk) @@ -51,11 +51,13 @@ dnl User defined features AC_MSG_CHECKING(--enable-debug argument) AC_ARG_ENABLE(debug, [ --enable-debug=N Turn on debuging.], - debug="${enableval}"; DEBUG_FLAGS="-Wshadow -g -ggdb -DDEBUG=$debug"; + debug="${enableval}"; DEBUG_FLAGS="-g -ggdb -DDEBUG=$debug"; AC_MSG_RESULT(${enableval}) ;, debug="no"; AC_MSG_RESULT(no)) if test "$debug" = "yes"; then - DEBUG_FLAGS="-Wshadow -g -ggdb -DDEBUG=1" + dnl Commented by Nepto [27/5/2002] + dnl DEBUG_FLAGS="-Wshadow -g -ggdb -DDEBUG=1" + DEBUG_FLAGS="-g -ggdb -DDEBUG=1" fi AC_SUBST(DEBUG_FLAGS) @@ -71,3 +73,4 @@ AC_SUBST(MODULES_OBJ) AC_OUTPUT(Makefile src/Makefile config.h) +