X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=configure.in;h=20cc06498eb751008de0e1040a56d0a579d5f1fb;hb=6850134e4711a842cc7c0a306a9e4243df06b952;hp=63efb05ff93c00e6ef401841dc641377ebf8324d;hpb=d623cbf9b6316752352e1115271ced995967815e;p=ctsim.git diff --git a/configure.in b/configure.in index 63efb05..20cc064 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,2.0.0-b1) +AM_INIT_AUTOMAKE(ctsim,2.0.0-b3) AM_CONFIG_HEADER(config.h) dnl Checks for programs. @@ -88,7 +88,7 @@ fi dnl Checks for header files. AC_HEADER_STDC -AC_CHECK_HEADERS(fcntl.h unistd.h getopt.h sys/fcntl.h setjmp.h stdarg.h stddef.h sys/types.h sys/stat.h string.h ctype.h math.h stdio.h netinet/in.h inttypes.h sys/param.h stdint.h stdlib.h g2.h) +AC_CHECK_HEADERS(fcntl.h unistd.h getopt.h sys/fcntl.h setjmp.h stdarg.h stddef.h sys/types.h sys/stat.h string.h ctype.h math.h stdio.h netinet/in.h inttypes.h sys/param.h stdint.h stdlib.h g2.h assert.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST @@ -143,19 +143,25 @@ AC_ARG_ENABLE(debug, [ --enable-debug Turn on debugging], [case "${enableval}" in yes) debug=true - CFLAGS="-g -DDEBUG" AC_MSG_RESULT(yes) ;; no) debug=false AC_MSG_RESULT(no) - CFLAGS="-g -O" ;; *) AC_MSG_RESULT([bad value ${enableval} for --enable-debug]) ;; esac], -[debug=false]) +[debug=false; AC_MSG_RESULT(no)]) AM_CONDITIONAL(DEBUG, test "$debug" = "true") +if test "$debug" = "true" ; then + CFLAGS="-g -DDEBUG" + AC_DEFINE(DEBUG) +else + CFLAGS="-g -O3 -DNDEBUG" + AC_DEFINE(NDEBUG) +fi + dnl Set LAM path AC_ARG_WITH(lam, [ --with-lam[=PATH] Set path of LAM MPI ],