[srvx-commits] CVS: services configure.in,1.73,1.74
Brought to you by:
entrope
From: Entrope <en...@us...> - 2003-10-20 18:21:33
|
Update of /cvsroot/srvx/services In directory sc8-pr-cvs1:/tmp/cvs-serv5444 Modified Files: configure.in Log Message: add check for usable libdl on boehm-gc build Index: configure.in =================================================================== RCS file: /cvsroot/srvx/services/configure.in,v retrieving revision 1.73 retrieving revision 1.74 diff -C2 -r1.73 -r1.74 *** configure.in 9 Sep 2003 01:56:37 -0000 1.73 --- configure.in 20 Oct 2003 16:19:40 -0000 1.74 *************** *** 220,223 **** --- 220,224 ---- AC_MSG_RESULT(boehm-gc) AC_CHECK_HEADERS(gc/gc.h,,AC_MSG_ERROR([Boehm GC header file missing. boehm-gc build will fail.])) + AC_CHECK_LIB(dl, dlopen, , AC_MSG_ERROR([libdl library is missing. boehm-gc build will fail.])) AC_CHECK_LIB(gc, GC_gcollect, , AC_MSG_ERROR([Boehm GC library is missing. boehm-gc build will fail.])) AC_DEFINE(WITH_MALLOC_BOEHM_GC, 1, [Define if using the Boehm GC to garbage collect and check memory leaks]) |