X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=configure.in;h=5f43602fde9d3db4059979e0c35b2b9330b07ad0;hb=3e346e67f7f7a331919a32439b0f54a4d53d3029;hp=761d95a089fe982c9bead8a98bce97059f68aeb8;hpb=2f3d6e2580db607105bb072b13e4aff453ae4495;p=ctsim.git diff --git a/configure.in b/configure.in index 761d95a..5f43602 100644 --- a/configure.in +++ b/configure.in @@ -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.7) +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