Browse Source

Moved --enable-debug option code to near end of file to allow AC_PROG_CC to still update CFLAGS with -g -02

ahc_fix_select
tedbullock 17 years ago
parent
commit
debafb721b
1 changed files with 8 additions and 8 deletions
  1. +8
    -8
      httperf/configure.ac

+ 8
- 8
httperf/configure.ac View File

@@ -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)

Loading…
Cancel
Save