Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
415d9f50
Commit
415d9f50
authored
Nov 16, 2006
by
Howard Chu
Browse files
Reject BDB version 4.3; it is too unstable.
parent
15502d87
Changes
1
Hide whitespace changes
Inline
Side-by-side
build/openldap.m4
View file @
415d9f50
...
...
@@ -691,8 +691,8 @@ AC_DEFUN([OL_BDB_COMPAT],
# define DB_VERSION_MINOR 0
#endif
/* require 4.2 or later */
#if (DB_VERSION_MAJOR >= 4) && (DB_VERSION_MINOR >= 2)
/* require 4.2 or later
, but exclude 4.3
*/
#if (DB_VERSION_MAJOR >= 4) && (DB_VERSION_MINOR >= 2)
&& (DB_VERSION_MINOR !=3)
__db_version_compat
#endif
], [ol_cv_bdb_compat=yes], [ol_cv_bdb_compat=no])])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment