mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05: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
3 changed files with 265 additions and 262 deletions
|
|
@ -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 a new issue