Use a more sophisticated test for the existence of libdb that works for

berk_db 4.0.
This commit is contained in:
Theodore Ts'o 2004-01-13 03:56:52 +00:00
parent b239e7b814
commit e1d0ea8a18

View File

@ -33,8 +33,16 @@ if test "x$ob_cv_with_ssl" != xno; then
])
fi
AC_CHECK_LIB(db, db_create, [LIBS="$LIBS -ldb"], [AC_MSG_ERROR([Berkley DB not found.])])
AC_CHECK_HEADER(db.h, , [AC_MSG_ERROR([Berkley DB header file not found.])])
AC_CACHE_CHECK(for db_create in -ldb, ac_cv_db_db_create,
[ac_cv_db_dbcreate=no
AC_TRY_LINK([#include <db.h>],
[db_create();],[ac_cv_db_db_create=yes])])
if test $ac_cv_db_db_create=yes; then
LIBS="$LIBS -ldb"
AC_DEFINE(HAVE_LIBDB, 1, [Define if you have libdb])
else
AC_MSG_ERROR([Berkley DB not found, you must install libdb])
fi
AC_OUTPUT(Makefile src/Makefile isync.spec)