mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-01 12:20:26 +02:00
* configure.in: Added --enable-debug-freelist option.
* acconfig.h: Added DEBUG_FREELIST.
This commit is contained in:
parent
2e8a5db86a
commit
52b3923a9d
2 changed files with 9 additions and 0 deletions
|
@ -52,6 +52,9 @@
|
|||
#undef DEBUG_EXTENSIONS
|
||||
#undef READER_EXTENSIONS
|
||||
|
||||
/* Define this if you want to debug the free list (helps w/ GC bugs) */
|
||||
#undef DEBUG_FREELIST
|
||||
|
||||
/* Define this if your system defines S_ISLNK in sys/stat.h */
|
||||
#undef HAVE_S_ISLNK
|
||||
|
||||
|
|
|
@ -50,6 +50,12 @@ AC_ARG_ENABLE(guile-debug,
|
|||
AC_DEFINE(GUILE_DEBUG)
|
||||
fi)
|
||||
|
||||
AC_ARG_ENABLE(debug-freelist,
|
||||
[ --enable-debug-freelist Include garbage collector freelist debugging code],
|
||||
if test "$enable_debug_freelist" = y || test "$enable_debug_freelist" = yes; then
|
||||
AC_DEFINE(DEBUG_FREELIST)
|
||||
fi)
|
||||
|
||||
AC_ARG_ENABLE(posix,
|
||||
[ --disable-posix omit posix interfaces],,
|
||||
enable_posix=yes)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue