From: Kurt Zeilenga Date: Mon, 25 Sep 2000 20:16:19 +0000 (+0000) Subject: Update build environment for back-bdb X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~1899 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c3ab074c009a00a0be668a13f6ed7db1508f2664;p=openldap Update build environment for back-bdb --- diff --git a/servers/slapd/back-bdb/Makefile.in b/servers/slapd/back-bdb/Makefile.in index 0e9dae5e00..646183ec6c 100644 --- a/servers/slapd/back-bdb/Makefile.in +++ b/servers/slapd/back-bdb/Makefile.in @@ -1,7 +1,11 @@ # $OpenLDAP$ -SRCS = error.c init.c -OBJS = error.lo init.lo +SRCS = init.c tools.c \ + add.c compare.c delete.c search.c \ + dn2entry.lo dn2id.c error.c id2entry.c idl.c nextid.c +OBJS = init.lo tools.lo \ + add.lo compare.lo delete.lo search.lo \ + dn2entry.lo dn2id.lo error.lo id2entry.lo idl.lo nextid.lo LDAP_INCDIR= ../../../include LDAP_LIBDIR= ../../../libraries diff --git a/servers/slapd/back-bdb/init.c b/servers/slapd/back-bdb/init.c index 4df56627dc..32c44b06b5 100644 --- a/servers/slapd/back-bdb/init.c +++ b/servers/slapd/back-bdb/init.c @@ -35,10 +35,10 @@ bdb_open( BackendInfo *bi ) { /* initialize the underlying database system */ - int db_env_set_func_malloc( ch_malloc ); - int db_env_set_func_realloc( ch_realloc ); - int db_env_set_func_free( ch_free ); - int db_env_set_func_yield( ldap_pvt_thread_yield ); + db_env_set_func_malloc( ch_malloc ); + db_env_set_func_realloc( ch_realloc ); + db_env_set_func_free( ch_free ); + db_env_set_func_yield( ldap_pvt_thread_yield ); return 0; }