X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=configure;h=81f787c934f8f657d75b356dc518fe337e10b7a6;hb=95f582b3a2eb1ccea825f44ab0aad8e13308b85d;hp=5bc25fd668f73ccd853006eccb038eda7d408ef8;hpb=6297f6a3262a0f1153537e2f1f189e024860d71f;p=openldap diff --git a/configure b/configure index 5bc25fd668..81f787c934 100755 --- a/configure +++ b/configure @@ -35722,9 +35722,9 @@ main() } #if (DB_VERSION_MAJOR > 3) || (DB_VERSION_MINOR >= 1) - rc = env->open( env, NULL, flags, 0 ); + rc = (env->open)( env, NULL, flags, 0 ); #else - rc = env->open( env, NULL, NULL, flags, 0 ); + rc = (env->open)( env, NULL, NULL, flags, 0 ); #endif if ( rc == 0 ) { @@ -35855,8 +35855,8 @@ cat >>conftest.$ac_ext <<_ACEOF # 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