From 7c62dc8f6e2c70f69cb75ea37e94c26ef7e46701 Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Fri, 5 Oct 2007 17:33:02 +0000 Subject: [PATCH] Reject BDB 4.6 or newer --- build/openldap.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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])]) -- 2.47.2