X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=configure.ac;h=410a2af887e5bb6317ce77f2a1afd4c8f4f74079;hb=7577cb0a57aa70d9857d42c381f13c7cb60d0056;hp=3118870aba953738c85d800a2c76483505d462d8;hpb=ea65554ea537786c7bc27018264f9e0d2ebd02ce;p=awesomized%2Flibmemcached diff --git a/configure.ac b/configure.ac index 3118870a..410a2af8 100644 --- a/configure.ac +++ b/configure.ac @@ -56,16 +56,21 @@ sinclude(config/64bit.m4) sinclude(config/protocol_binary.m4) # We only support GCC and Sun's forte at the moment +CFLAGS="-DMEMCACHED_INTERNAL $CFLAGS" if test "$GCC" = "yes" then + CFLAGS="-W -Wall -Wextra -Wstrict-aliasing -pedantic -Wundef -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -03 $CFLAGS" + if test "$ENABLE_DEBUG" = "yes" then - CFLAGS="-Wall -ggdb -DMEMCACHED_INTERNAL -DHAVE_DEBUG $CFLAGS" - else - CFLAGS="-Wall -O3 -DMEMCACHED_INTERNAL $CFLAGS" + CFLAGS="$CFLAGS -ggdb -DHAVE_DEBUG" fi else CFLAGS="-Xa -xstrconst -mt -D_FORTEC_ $CFLAGS" + if test "$ENABLE_DEBUG" = "yes" + then + CFLAGS="$CFLAGS -DHAVE_DEBUG" + fi DTRACEFLAGS="$DTRACEFLAGS" fi