Use a more sophisticated test for the existence of libdb that works for
berk_db 4.0.
This commit is contained in:
parent
b239e7b814
commit
e1d0ea8a18
12
configure.in
12
configure.in
|
@ -33,8 +33,16 @@ if test "x$ob_cv_with_ssl" != xno; then
|
||||||
])
|
])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_CHECK_LIB(db, db_create, [LIBS="$LIBS -ldb"], [AC_MSG_ERROR([Berkley DB not found.])])
|
AC_CACHE_CHECK(for db_create in -ldb, ac_cv_db_db_create,
|
||||||
AC_CHECK_HEADER(db.h, , [AC_MSG_ERROR([Berkley DB header file not found.])])
|
[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)
|
AC_OUTPUT(Makefile src/Makefile isync.spec)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user