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
Shawn McKinney
OpenLDAP
Commits
45f727b8
Commit
45f727b8
authored
Mar 17, 2000
by
Kurt Zeilenga
Browse files
Allow DEFAULT_DB_PAGE_SIZE to be defined at build time
parent
d697f158
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
45f727b8
...
...
@@ -15,6 +15,7 @@ Changes included in OpenLDAP 1.2.10 Release Engineering
Fixed -llber seqorset buffer overrun bug (ITS#479)
Build Environment
Do not list unsupported LDBM API option NDBM
Allow DEFAULT_DB_PAGE_SIZE to be defined at build time
Changes included in OpenLDAP 1.2.9
CVS Tag: OPENLDAP_REL_ENG_1_2_9
...
...
include/ldbm.h
View file @
45f727b8
...
...
@@ -32,7 +32,9 @@
# include <db.h>
# ifdef HAVE_BERKELEY_DB2
# define R_NOOVERWRITE DB_NOOVERWRITE
# define DEFAULT_DB_PAGE_SIZE 1024
# ifndef DEFAULT_DB_PAGE_SIZE
# define DEFAULT_DB_PAGE_SIZE 1024
# endif
# endif
#endif
...
...
@@ -90,7 +92,9 @@ LDAP_END_DECL
# include <db.h>
# ifdef LDBM_USE_DB2
# define R_NOOVERWRITE DB_NOOVERWRITE
# define DEFAULT_DB_PAGE_SIZE 1024
# ifndef DEFAULT_DB_PAGE_SIZE
# define DEFAULT_DB_PAGE_SIZE 1024
# endif
# endif
#endif
...
...
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