]> granicus.if.org Git - gc/commitdiff
Change configure to define NO_DEBUGGING if "--disable-gc-debug"
authorIvan Maidanski <ivmai@mail.ru>
Fri, 23 Sep 2011 07:59:19 +0000 (11:59 +0400)
committerIvan Maidanski <ivmai@mail.ru>
Fri, 23 Sep 2011 07:59:19 +0000 (11:59 +0400)
* configure.ac (NO_DEBUGGING): Define based on testing enable_gc_debug
value (instead of based on with_cross_host value).

configure.ac

index 6fa0f6f81b993169ad826b38164e161a5df15306..6cd63ae0c9a5d0796e9d9e95d48e820095ccb9d6 100644 (file)
@@ -711,11 +711,13 @@ if test -n "${with_cross_host}"; then
    AC_DEFINE([NO_CLOCK], 1, [Define to not use system clock (cross compiling).])
    AC_DEFINE([SMALL_CONFIG], 1,
              [Define to tune the collector for small heap sizes.])
+fi
+
+if test "$enable_gc_debug" == "no"; then
    AC_DEFINE([NO_DEBUGGING], 1,
              [Disable debugging, like GC_dump and its callees.])
 fi
 
-
 AC_SUBST(UNWINDLIBS)
 
 AC_ARG_ENABLE(gc-assertions,