diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-02-09T14·13+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-02-09T14·13+0000 |
commit | 1876ab764f5b6e42fce67bdb46a8b03131653900 (patch) | |
tree | 175c6cb5a28cf2eccfb5df063e5fe3467e3daa54 /configure.ac | |
parent | dfc4117e901f27276ea1ce81c852bf4d52959961 (diff) |
* A better fix. $boehmgc isn't set anywhere, we should use the flags
returned by pkg-config.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e34e4ba3acff..273a3c22133b 100644 --- a/configure.ac +++ b/configure.ac @@ -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 |