mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-11 03:33:11 -08:00
By default, use the version of the garbage collector shipped with ECL
This commit is contained in:
parent
944f116c96
commit
306f510bd0
2 changed files with 4 additions and 4 deletions
4
src/configure
vendored
4
src/configure
vendored
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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] ),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue