From: Howard Chu Date: Fri, 5 Oct 2007 17:33:02 +0000 (+0000) Subject: Reject BDB 4.6 or newer X-Git-Tag: OPENLDAP_REL_ENG_2_3_39~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c62dc8f6e2c70f69cb75ea37e94c26ef7e46701;p=thirdparty%2Fopenldap.git Reject BDB 4.6 or newer --- diff --git a/build/openldap.m4 b/build/openldap.m4 index ecdbb0b5c9..5e08190e5c 100644 --- a/build/openldap.m4 +++ b/build/openldap.m4 @@ -696,8 +696,8 @@ AC_DEFUN([OL_BDB_COMPAT], # define DB_VERSION_MINOR 0 #endif -/* require 4.2 or later */ -#if (DB_VERSION_MAJOR >= 4) && (DB_VERSION_MINOR >= 2) +/* require 4.2-4.5 */ +#if (DB_VERSION_MAJOR >= 4) && (DB_VERSION_MINOR >= 2) && (DB_VERSION_MINOR < 6) __db_version_compat #endif ], [ol_cv_bdb_compat=yes], [ol_cv_bdb_compat=no])])