* A better fix. $boehmgc isn't set anywhere, we should use the flags

returned by pkg-config.
This commit is contained in:
Eelco Dolstra 2011-02-09 14:13:09 +00:00
parent dfc4117e90
commit 1876ab764f
2 changed files with 2 additions and 2 deletions

View File

@ -268,7 +268,7 @@ AC_ARG_ENABLE(gc, AC_HELP_STRING([--enable-gc],
gc=$enableval, gc=)
if test -n "$gc"; then
PKG_CHECK_MODULES([BDW_GC], [bdw-gc])
boehmgc_lib="-L$boehmgc/lib -lgc"
boehmgc_lib="$BDW_GC_LIBS"
CXXFLAGS="$BDW_GC_CFLAGS $CXXFLAGS"
AC_DEFINE(HAVE_BOEHMGC, 1, [Whether to use the Boehm garbage collector.])
fi

View File

@ -75,7 +75,7 @@ let
configureFlags = ''
--disable-init-state
--with-bzip2=${bzip2} --with-sqlite=${sqlite}
${lib.optionalString (system != "i386-sunos") "--enable-gc"}
--enable-gc
'';
};