mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-03 02:41:24 +08:00
ITS#3581: Have configure report a mismatch if the version in db.h
header doesn't precisely match the return of db_version().
This commit is contained in:
parent
f7e158333e
commit
a1bce885a0
@ -368,7 +368,10 @@ main()
|
||||
|
||||
version = db_version( &major, &minor, &patch );
|
||||
|
||||
if( major != DB_VERSION_MAJOR || minor < DB_VERSION_MINOR ) {
|
||||
if( major != DB_VERSION_MAJOR ||
|
||||
minor != DB_VERSION_MINOR ||
|
||||
patch != DB_VERSION_PATCH )
|
||||
{
|
||||
printf("Berkeley DB version mismatch\n"
|
||||
"\theader: %s\n\tlibrary: %s\n",
|
||||
DB_VERSION_STRING, version);
|
||||
|
@ -1034,9 +1034,6 @@
|
||||
/* define to support SQL backend */
|
||||
#undef SLAPD_SQL
|
||||
|
||||
/* define for Dynamic Group overlay */
|
||||
#undef SLAPD_OVER_CHAIN
|
||||
|
||||
/* define for Dynamic Group overlay */
|
||||
#undef SLAPD_OVER_DENYOP
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user