By default, use the version of the garbage collector shipped with ECL

This commit is contained in:
jjgarcia 2006-02-28 17:31:42 +00:00
parent 944f116c96
commit 306f510bd0
2 changed files with 4 additions and 4 deletions

4
src/configure vendored
View file

@ -863,7 +863,7 @@ Optional Features:
--enable-threads support for native threads (yes|no|auto,
default=NO).
--enable-boehm use the Boehm-Weiser garbage collector
(no|included|system|auto, default=auto)
(no|included|system|auto, default=included)
--enable-local-boehm Deprecated! See --enable-boehm
--enable-slow-config use GMP to guess compiler/linker flags (no|yes,
default=NO)
@ -1419,7 +1419,7 @@ if test "${enable_boehm+set}" = set; then
enableval="$enable_boehm"
else
enable_boehm=auto
enable_boehm=included
fi;
# Check whether --enable-local-boehm or --disable-local-boehm was given.

View file

@ -41,8 +41,8 @@ AC_ARG_ENABLE(threads,
AC_ARG_ENABLE(boehm,
AS_HELP_STRING( [--enable-boehm],
[use the Boehm-Weiser garbage collector]
[(no|included|system|auto, default=auto)] ),
[], [enable_boehm=auto] )
[(no|included|system|auto, default=included)] ),
[], [enable_boehm=included] )
AC_ARG_ENABLE(local-boehm,
AS_HELP_STRING( [--enable-local-boehm], [Deprecated! See --enable-boehm] ),