diff options
author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-21 08:37:04 +0000 |
---|---|---|
committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-21 08:37:04 +0000 |
commit | f4673084b9af89fead20326078f04dfb24521dab (patch) | |
tree | bd1dc93ef26d4c2030de92c336aa13eeadcf42ee /libjava/libltdl/configure.in | |
parent | f8c1da573b1b2b72501630f18fc1452e6b9e9c0c (diff) | |
download | gcc-f4673084b9af89fead20326078f04dfb24521dab.tar.gz |
* configure.in: Update boehm-gc include dir for new GC version.
* configure: Rebuilt.
* exception.cc: Only include <gc.h>. Remove TRUE/FALSE hacks and
extern "C" wrapper.
* boehm.cc: Update includes for new GC version. MAKE_PROC is now
GC_MAKE_PROC. mark_proc is now GC_mark_proc.
* posix-threads.cc: Only include <gc.h>. Don't need to wrap with
extern "C".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42380 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/libltdl/configure.in')
-rw-r--r-- | libjava/libltdl/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/libltdl/configure.in b/libjava/libltdl/configure.in index 188fc101da4..04988f64141 100644 --- a/libjava/libltdl/configure.in +++ b/libjava/libltdl/configure.in @@ -43,7 +43,7 @@ changequote([,]) GCINCS= if test "$GC" = "boehm"; then - GCINCS='-I$(top_srcdir)/../../boehm-gc -I$(top_builddir)/../../boehm-gc' + GCINCS='-I$(top_srcdir)/../../boehm-gc/include' GCINCS="$GCINCS `cat ../../boehm-gc/boehm-cflags`" AC_DEFINE(HAVE_BOEHM_GC) fi |