r123: *** empty log message ***
[ctsim.git] / configure.in
index 947c97653dffa554bb704a8a286a73d7219e525f..5f43602fde9d3db4059979e0c35b2b9330b07ad0 100644 (file)
@@ -4,7 +4,7 @@ dnl Must reset CDPATH so that bash's cd does not print to stdout
 dnl CDPATH=
 
 AC_INIT(src/pjrec.cpp)
-AM_INIT_AUTOMAKE(ctsim,1.9.8)
+AM_INIT_AUTOMAKE(ctsim,1.9.9)
 AM_CONFIG_HEADER(config.h)
 
 dnl Checks for programs.
@@ -12,7 +12,7 @@ AC_PROG_AWK
 AC_PROG_INSTALL
 AC_PROG_MAKE_SET
 AC_PROG_RANLIB
-AC_PROG_CC
+AC_PROG_CC([-g])
 AC_PROG_CXX
 
 
@@ -137,18 +137,22 @@ AC_ARG_ENABLE(verbose-warnings,
 )
 
 dnl Check for debug mode
+AC_MSG_CHECKING([debug])
 AC_ARG_ENABLE(debug,
 [  --enable-debug          Turn on debugging],
 [case "${enableval}" in
   yes) debug=true 
-       CFLAGS="$CFLAGS -g"
+       CFLAGS="-g -DDEBUG"
+       AC_MSG_RESULT(yes)
        ;;
   no)  debug=false 
-       CFLAGS="$CFLAGS -O2"
+       AC_MSG_RESULT(no)
+       CFLAGS="-g -O"
        ;;
-  *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug
+  *) AC_MSG_RESULT([bad value ${enableval} for --enable-debug]
        ;;
-esac],[debug=false])
+esac],
+[debug=false])
 AM_CONDITIONAL(DEBUG, test "$debug" = "true")
 
 dnl Set LAM path