mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
Require BDB 4.1 for back-bdb
This commit is contained in:
parent
a045432882
commit
eb9f396974
2 changed files with 241 additions and 235 deletions
|
|
@ -434,9 +434,12 @@ AC_DEFUN([OL_BDB_COMPAT],
|
||||||
#ifndef DB_VERSION_MAJOR
|
#ifndef DB_VERSION_MAJOR
|
||||||
# define DB_VERSION_MAJOR 1
|
# define DB_VERSION_MAJOR 1
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef DB_VERSION_MINOR
|
||||||
|
# define DB_VERSION_MINOR 0
|
||||||
|
#endif
|
||||||
|
|
||||||
/* require 4.0 or later */
|
/* require 4.0 or later */
|
||||||
#if DB_VERSION_MAJOR >= 4
|
#if (DB_VERSION_MAJOR >= 4) && (DB_VERSION_MINOR >= 1)
|
||||||
__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