Import improved BDB version check

This commit is contained in:
Kurt Zeilenga 2005-03-13 04:02:46 +00:00
parent 339c548257
commit 05540728b5
3 changed files with 240 additions and 231 deletions

View file

@ -1,13 +1,16 @@
OpenLDAP 2.2 Change Log
OpenLDAP 2.2.24 Engineering
OpenLDAP 2.2.24 Release
Fixed slapd "chldren:" typo (ITS#3560)
Fixed slapd syncrepl consumer unclean shutdown (ITS#3546)
Fixed slapd syncrepl provider sessionlog (ITS#3571)
Fixed slapd connection_abandon processing (ITS#3534, 3546, 3571)
Added libldap fast synchronous search result processing
Fixed libldap fdset re-init for restart (ITS#3524)
Build Environment
Updated BDB version check (ITS#3581)
Documentation
Updated slapd(8) (ITS#3591)
Updated README
OpenLDAP 2.2.23 Release

View file

@ -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);

461
configure vendored

File diff suppressed because it is too large Load diff