OpenLDAP Change Log
+Changes included in OpenLDAP 1.2 Release Engineering
+ CVS Tag: OPENLDAP_REL_ENG_1_2_1
+ Fixed ud cp == NULL bug
+ Fixed ldbm Berkeley DB 2.4 mp_pool init problem
+ Fixed slapd modrdn
+ Fixed slapd command line usage and log level option
+ Fixed slurpd ldap_pvt_thread_create argument typo
+ Added modrdn test.
+ Build environment
+ Mixed 'make veryclean' doc directory problem
+ Fixed <ac/string.h> strdup declaration issues
+
Changes included in OpenLDAP 1.2.1
CVS Tag: OPENLDAP_REL_ENG_1_2_1
Updated ctype and string generic headers
dbinfo.db_pagesize = DEFAULT_DB_PAGE_SIZE;
dbinfo.db_malloc = ldbm_malloc;
+#if defined( DB_VERSION_MAJOR ) && defined( DB_VERSION_MINOR ) \
+ && DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR != 4
+
if( ldbm_Env.mp_info == NULL ) {
/* set a cachesize if we aren't using a memory pool */
dbinfo.db_cachesize = dbcachesize;
}
+#endif
+
LDBM_LOCK;
(void) db_open( name, DB_TYPE, rw, mode, &ldbm_Env, &dbinfo, &ret );
LDBM_UNLOCK;