Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@mono-cvs.ximian.com>2002-09-02 00:47:55 +0400
committerJuli Mallett <jmallett@mono-cvs.ximian.com>2002-09-02 00:47:55 +0400
commitba419c4ef8446256afdfbff54fe9c55756873d08 (patch)
treed97326dca65b5d3086f82ab2c9e4ae07cde9bbf0 /configure.in
parent271f6b2dc8cd7edd7ef67b65a050e41aa7f2193b (diff)
2002-09-01 Juli Mallett <jmallett@FreeBSD.org>
* configure.in, mono/interpreter/interp.c, mono/io-layer/handles.c, mono/io-layer/processes.c, mono/io-layer/threads.c, mono/io-layer/timed-thread.c, mono/io-layer/wait.c, mono/jit/helpers.c, mono/jit/jit.c, mono/metadata/appdomain.c, mono/metadata/class.c, mono/metadata/domain.c, mono/metadata/gc.c, mono/metadata/object.c, mono/metadata/reflection.c, mono/metadata/threads.c, mono/os/gc_wrapper.h, mono/utils/mono-hash.c: Add a new header, gc_wrapper.h, to wrap inclusion of gc.h for boehm, since from FreeBSD and OpenBSD ports, gc.h is <gc.h>, but on GNU it seems to be in <gc/gc.h>. This will reduce the diffs FreeBSD ports has to apply, and also makes it possible for me to build with GC on OpenBSD/macppc built by hand. svn path=/trunk/mono/; revision=7173
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index bf240a50c85..abd623baf60 100644
--- a/configure.in
+++ b/configure.in
@@ -110,6 +110,7 @@ AC_SUBST(GLIB_LIBS)
AC_SUBST(GMODULE_CFLAGS)
AC_SUBST(GMODULE_LIBS)
+AC_CHECK_HEADERS(gc.h gc/gc.h)
AC_CHECK_LIB(gc, GC_malloc, found_boehm="yes",,$libdl)
gc=auto
AC_ARG_WITH(gc, [ --with-gc=boehm,none],[gc=$with_gc])