From debafb721b376b8d4ecb753686ebcbf45be3d90c Mon Sep 17 00:00:00 2001 From: tedbullock Date: Fri, 13 Jul 2007 01:43:54 +0000 Subject: [PATCH] Moved --enable-debug option code to near end of file to allow AC_PROG_CC to still update CFLAGS with -g -02 --- httperf/configure.ac | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/httperf/configure.ac b/httperf/configure.ac index 43874ae..76c3208 100755 --- a/httperf/configure.ac +++ b/httperf/configure.ac @@ -10,14 +10,6 @@ AC_CANONICAL_TARGET AM_INIT_AUTOMAKE(httperf, 0.9.99) -# Turn on Debug if necessary -AC_ARG_ENABLE(debug, - [ --enable-debug enable debug support]) - -if test "$enable_debug" = yes; then - CFLAGS="${CFLAGS} -DDEBUG" -fi - # Checks for programs. AC_GNU_SOURCE AC_PROG_CC([cc gcc]) @@ -76,4 +68,12 @@ AC_FUNC_STRTOD AC_FUNC_VPRINTF AC_CHECK_FUNCS([gethostbyname gettimeofday memset munmap select socket strcasecmp strchr strdup strerror strncasecmp strrchr strstr strtol strtoul inet_aton getopt_long]) +# Turn on Debug if necessary +AC_ARG_ENABLE(debug, + [ --enable-debug enable debug support]) + +if test "$enable_debug" = yes; then + CFLAGS="${CFLAGS} -DDEBUG" +fi + AC_OUTPUT(Makefile man/Makefile src/stat/Makefile src/lib/Makefile src/gen/Makefile src/Makefile)