mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-10 22:10:21 +02:00
Adjustments to configure options
This commit is contained in:
parent
8f820364cd
commit
62002dcbec
1 changed files with 8 additions and 8 deletions
16
configure.in
16
configure.in
|
@ -40,24 +40,24 @@ AC_CONFIG_SUBDIRS(guile-readline)
|
|||
#
|
||||
#--------------------------------------------------------------------
|
||||
|
||||
AC_ARG_ENABLE(guile-debug,
|
||||
[ --enable-guile-debug include internal debugging functions],
|
||||
if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then
|
||||
AC_DEFINE(GUILE_DEBUG)
|
||||
fi)
|
||||
|
||||
AC_ARG_ENABLE(debug-freelist,
|
||||
[ --enable-debug-freelist Include garbage collector freelist debugging code],
|
||||
[ --enable-debug-freelist include garbage collector freelist debugging code],
|
||||
if test "$enable_debug_freelist" = y || test "$enable_debug_freelist" = yes; then
|
||||
AC_DEFINE(GUILE_DEBUG_FREELIST)
|
||||
fi)
|
||||
|
||||
AC_ARG_ENABLE(debug-malloc,
|
||||
[ --enable-debug-malloc Include malloc debugging code],
|
||||
[ --enable-debug-malloc include malloc debugging code],
|
||||
if test "$enable_debug_malloc" = y || test "$enable_debug_malloc" = yes; then
|
||||
AC_DEFINE(GUILE_DEBUG_MALLOC)
|
||||
fi)
|
||||
|
||||
AC_ARG_ENABLE(guile-debug,
|
||||
[ --enable-guile-debug include internal debugging functions],
|
||||
if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then
|
||||
AC_DEFINE(GUILE_DEBUG)
|
||||
fi)
|
||||
|
||||
AC_ARG_ENABLE(arrays,
|
||||
[ --disable-arrays omit array and uniform array support],,
|
||||
enable_arrays=yes)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue