]> granicus.if.org Git - zfs/commitdiff
Remove AC_DEFINE for DEBUG/NDEBUG
authorBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 1 Jul 2010 16:40:29 +0000 (09:40 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 1 Jul 2010 16:40:29 +0000 (09:40 -0700)
Whoops, I momentarilly forgot I had explicitly set these as CC
options so dependent packages which need to include spl_config.h
would not end up having these defined which can result in
accidentally hanging debug enabled at best, or a build failure
at worst.

config/spl-build.m4
configure
spl_config.h.in

index 9fd97c06f831cddb33d09a09fe08e5d620a15976..09e4b55eb1dd162fcdbbe27f62486cbb64c17544 100644 (file)
@@ -244,12 +244,10 @@ AC_DEFUN([SPL_AC_DEBUG], [
 
        AS_IF([test "x$enable_debug" = xyes],
        [
-               AC_DEFINE([DEBUG], [1], [Define to 1 to enable debug])
                KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG -Werror"
                DEBUG_CFLAGS="-DDEBUG -Werror"
        ],
        [
-               AC_DEFINE([NDEBUG], [1], [Define to 1 to enable debug])
                KERNELCPPFLAGS="${KERNELCPPFLAGS} -DNDEBUG"
                DEBUG_CFLAGS="-DNDEBUG"
        ])
index a0d4cf890045c46f49a7e3f959e5bc8830784fd3..979c388002b3bab4b18f8968880f94ad7d069920 100755 (executable)
--- a/configure
+++ b/configure
 
        if test "x$enable_debug" = xyes; then
 
-
-cat >>confdefs.h <<\_ACEOF
-#define DEBUG 1
-_ACEOF
-
                KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG -Werror"
                DEBUG_CFLAGS="-DDEBUG -Werror"
 
 else
 
-
-cat >>confdefs.h <<\_ACEOF
-#define NDEBUG 1
-_ACEOF
-
                KERNELCPPFLAGS="${KERNELCPPFLAGS} -DNDEBUG"
                DEBUG_CFLAGS="-DNDEBUG"
 
 
        if test "x$enable_debug" = xyes; then
 
-
-cat >>confdefs.h <<\_ACEOF
-#define DEBUG 1
-_ACEOF
-
                KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG -Werror"
                DEBUG_CFLAGS="-DDEBUG -Werror"
 
 else
 
-
-cat >>confdefs.h <<\_ACEOF
-#define NDEBUG 1
-_ACEOF
-
                KERNELCPPFLAGS="${KERNELCPPFLAGS} -DNDEBUG"
                DEBUG_CFLAGS="-DNDEBUG"
 
index 540b793923ec9c8641453d2430385fcd71bf6983..a22ca7b8b9a362b9e6921def8f9a54146b990886 100644 (file)
@@ -3,9 +3,6 @@
 /* Atomic types use spinlocks */
 #undef ATOMIC_SPINLOCK
 
-/* Define to 1 to enable debug */
-#undef DEBUG
-
 /* Define to 1 to enable basic kmem accounting */
 #undef DEBUG_KMEM
 
    */
 #undef LT_OBJDIR
 
-/* Define to 1 to enable debug */
-#undef NDEBUG
-
 /* get_zone_counts() is needed */
 #undef NEED_GET_ZONE_COUNTS