Remove obsolete compile-time option for freelist debugging.

* configure.ac: Remove `--enable-debug-freelist' option and
  `SCM_I_GSC_GUILE_DEBUG_FREELIST' substitution variable.

* libguile/gen-scmconfig.c (main): Remove references to
  `SCM_I_GSC_GUILE_DEBUG_FREELIST' and `GUILE_DEBUG_FREELIST'.

* libguile/gen-scmconfig.h.in (SCM_I_GSC_GUILE_DEBUG_FREELIST): Remove.
This commit is contained in:
Ludovic Courtès 2010-03-04 23:28:38 +01:00
commit 83a7171bf3
3 changed files with 0 additions and 18 deletions

View file

@ -219,14 +219,6 @@ main (int argc, char *argv[])
pf ("#define GUILE_DEBUG 1 /* defined or undefined */\n");
else
pf ("/* #undef GUILE_DEBUG */\n");
/*** GUILE_DEBUG_FREELIST (deined or undefined) ***/
pf ("\n");
pf ("/* Define this to debug the free list (helps w/ GC bugs). */\n");
if (SCM_I_GSC_GUILE_DEBUG_FREELIST)
pf ("#define GUILE_DEBUG_FREELIST 1 /* defined or undefined */\n");
else
pf ("/* #undef GUILE_DEBUG_FREELIST */\n");
/*** SCM_ENABLE_DISCOURAGED (0 or 1) ***/
pf ("\n");