--enable-precisegc defaults to NO until further notice.

This commit is contained in:
Juan Jose Garcia Ripoll 2010-02-17 23:43:19 +01:00
parent f3fa64c038
commit 04eaf044ba
2 changed files with 5 additions and 4 deletions

5
src/configure vendored
View file

@ -1476,7 +1476,8 @@ Optional Features:
--enable-gengc use generational garbage collection. Requires
Boehm-Weiser gc. (no|yes, default=NO)
--enable-precisegc use type information during garbage collection.
Requires Boehm-Weiser gc. (no|yes, default=NO)
Requires Boehm-Weiser gc (EXPERIMENTAL). (no|yes,
default=NO)
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
@ -2360,7 +2361,7 @@ fi
if test "${enable_precisegc+set}" = set; then
enableval=$enable_precisegc; enable_precisegc=${enableval}
else
enable_precisegc=yes
enable_precisegc=no
fi

View file

@ -242,9 +242,9 @@ AC_ARG_ENABLE(gengc,
AC_ARG_ENABLE(precisegc,
AS_HELP_STRING( [--enable-precisegc],
[use type information during garbage collection. Requires Boehm-Weiser gc.]
[use type information during garbage collection. Requires Boehm-Weiser gc (EXPERIMENTAL).]
[(no|yes, default=NO)]),
[enable_precisegc=${enableval}], [enable_precisegc=yes] )
[enable_precisegc=${enableval}], [enable_precisegc=no] )
dnl AC_ARG_ENABLE(debug,
dnl AS_HELP_STRING( [--enable-debug],