From: Art Cancro Date: Wed, 6 Jan 2010 21:50:59 +0000 (+0000) Subject: * Modified configure.ac to look for gc/gc_local_alloc.h instead of gc/gc.h, since... X-Git-Tag: v7.86~521 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=772419287599b0f1271c984e9b9cf55025433227 * Modified configure.ac to look for gc/gc_local_alloc.h instead of gc/gc.h, since the former is what the source code is actually calling for. THIS HEADER DOES NOT APPEAR IN RED HAT OR CENTOS BUILDS OF LIBGC. Why is this in here at all? --- diff --git a/citadel/configure.ac b/citadel/configure.ac index 3803da167..b35fdb69a 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -710,7 +710,7 @@ fi dnl Checks for the Boehm-Demers-Weiser garbage collection library. if test "x$with_gc" != xno ; then - AC_CHECK_HEADERS(gc/gc.h, + AC_CHECK_HEADERS(gc/gc_local_alloc.h, [AC_CHECK_LIB(gc, GC_init, [ok_gc=yes],, )])