summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-03-22 14:47:38 +0000
committerLennart Poettering <lennart@poettering.net>2004-03-22 14:47:38 +0000
commit90c80089c6d6e2d7fe9680e567d8241806d7de9e (patch)
tree803f7cf6a265807a04b0e41883ef6a551028b846
parent78543440ac904769733cca90304200641f06e3bb (diff)
fix libdb 4.2 configure error message
git-svn-id: file:///home/lennart/svn/public/syrep/trunk@56 07ea20a6-d2c5-0310-9e02-9ef735347d72
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index fe9941d..d389f31 100644
--- a/configure.ac
+++ b/configure.ac
@@ -46,7 +46,7 @@ AC_CHECK_LIB([z], [inflate],, [AC_MSG_ERROR([*** Sorry, you have to install zlib
AC_CHECK_HEADER([zlib.h],, [AC_MSG_ERROR([*** Sorry, you have to install the zlib headers ***])])
# Check for Berkeley DB (needs to be improved)
-AC_CHECK_HEADER([db.h],, [AC_MSG_ERROR([*** Sorry, you have to install the Berkeley Database Library (libdb) 4.1 or newer ***])])
+AC_CHECK_HEADER([db.h],, [AC_MSG_ERROR([*** Sorry, you have to install the Berkeley Database Library (libdb) 4.2 or newer ***])])
LIBS="$LIBS -ldb"
# Checking libdb version number
@@ -59,7 +59,7 @@ AC_PREPROC_IFELSE([AC_LANG_SOURCE([[
#endif
]])],
[AC_MSG_RESULT([yes])],
-[AC_MSG_FAILURE([Berkeley libdb 4.1 required])])
+[AC_MSG_FAILURE([Berkeley libdb 4.2 required])])
AC_LANG_POP(C)
# Check for Linux sendfile()