mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 23:59:34 -05:00
Back-BDB now requires Berkeley DB 4 as this release includes
important fixes necessary for proper operation of back-bdb.
This commit is contained in:
parent
15902ae7e1
commit
f5dc8ed41c
2 changed files with 221 additions and 225 deletions
|
|
@ -429,10 +429,8 @@ AC_DEFUN([OL_BDB_COMPAT],
|
||||||
# define DB_VERSION_MAJOR 1
|
# define DB_VERSION_MAJOR 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* require 3.3 or later */
|
/* require 4.0 or later */
|
||||||
#if DB_VERSION_MAJOR > 3
|
#if DB_VERSION_MAJOR >= 4
|
||||||
__db_version_compat
|
|
||||||
#elif DB_VERSION_MAJOR == 3 && DB_VERSION_MINOR >= 3
|
|
||||||
__db_version_compat
|
__db_version_compat
|
||||||
#endif
|
#endif
|
||||||
], [ol_cv_bdb_compat=yes], [ol_cv_bdb_compat=no])])
|
], [ol_cv_bdb_compat=yes], [ol_cv_bdb_compat=no])])
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue