From 306f510bd054c0dfd2dd0ca9e1d43e75aa981612 Mon Sep 17 00:00:00 2001 From: jjgarcia Date: Tue, 28 Feb 2006 17:31:42 +0000 Subject: [PATCH] By default, use the version of the garbage collector shipped with ECL --- src/configure | 4 ++-- src/configure.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/configure b/src/configure index 820bcea1d..96af79bcb 100755 --- a/src/configure +++ b/src/configure @@ -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. diff --git a/src/configure.in b/src/configure.in index f212cc427..b93d2b7db 100644 --- a/src/configure.in +++ b/src/configure.in @@ -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] ),