Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
94e1d480
Commit
94e1d480
authored
23 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Misc adjustments to CBM tests
parent
55b34909
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
build/openldap.m4
+7
-0
7 additions, 0 deletions
build/openldap.m4
configure
+224
-217
224 additions, 217 deletions
configure
libraries/libldbm/ldbm.c
+4
-3
4 additions, 3 deletions
libraries/libldbm/ldbm.c
with
235 additions
and
220 deletions
build/openldap.m4
+
7
−
0
View file @
94e1d480
...
...
@@ -317,6 +317,13 @@ main()
int rc;
u_int32_t flags = DB_CREATE | DB_THREAD | DB_INIT_CDB | DB_INIT_MPOOL;
#ifdef DB_PRIVATE
flags |= DB_PRIVATE;
#endif
#ifdef DB_MPOOL_PRIVATE
flags |= DB_MPOOL_PRIVATE;
#endif
#if DB_VERSION_MAJOR > 2
DB_ENV *env = NULL;
...
...
This diff is collapsed.
Click to expand it.
configure
+
224
−
217
View file @
94e1d480
This diff is collapsed.
Click to expand it.
libraries/libldbm/ldbm.c
+
4
−
3
View file @
94e1d480
...
...
@@ -125,10 +125,11 @@ int ldbm_initialize( const char* home )
#ifdef DB_PRIVATE
envFlags
|=
DB_PRIVATE
;
#endif
#ifdef HAVE_BERKELEY_DB_THREAD
envFlags
|=
DB_THREAD
;
#if DB_
VERSION_MAJOR == 2
envFlags
|=
DB_
INIT_CDB
|
DB_INIT_MPOOL
;
envFlags
|=
DB_THREAD
|
DB_INIT_CDB
|
DB_INIT_MPOOL
;
#if
def
DB_
MPOOL_PRIVATE
envFlags
|=
DB_
MPOOL_PRIVATE
;
#endif
#endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment