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
Joe Martin
OpenLDAP
Commits
1b72a961
Commit
1b72a961
authored
Feb 13, 2007
by
Kurt Zeilenga
Browse files
Add BDB 4.5 detection
parent
ad30dcab
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
1b72a961
...
...
@@ -14,6 +14,8 @@ OpenLDAP 2.3.34 Engineering
Fixed slapo-syncprov contextCSN checkpoint again (ITS#4720)
Added slapo-ppolicy cn=config support (ITS#4836)
Added slapo-auditlog cn=config support
Build environment
Added Berkeley DB 4.5 detection
Documentation
Note slapo-dynlist interaction with manageDSAit (ITS#4831)
...
...
build/openldap.m4
View file @
1b72a961
...
...
@@ -486,7 +486,12 @@ __db_version
])
if test $ol_cv_bdb_major = 4 ; then
if test $ol_cv_bdb_minor = 4 ; then
if test $ol_cv_bdb_minor = 5 ; then
OL_BERKELEY_DB_TRY(ol_cv_db_db45,[-ldb45])
OL_BERKELEY_DB_TRY(ol_cv_db_db_45,[-ldb-45])
OL_BERKELEY_DB_TRY(ol_cv_db_db_4_dot_5,[-ldb-4.5])
OL_BERKELEY_DB_TRY(ol_cv_db_db_4_5,[-ldb-4-5])
elif test $ol_cv_bdb_minor = 4 ; then
OL_BERKELEY_DB_TRY(ol_cv_db_db44,[-ldb44])
OL_BERKELEY_DB_TRY(ol_cv_db_db_44,[-ldb-44])
OL_BERKELEY_DB_TRY(ol_cv_db_db_4_dot_4,[-ldb-4.4])
...
...
configure
View file @
1b72a961
This diff is collapsed.
Click to expand it.
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