Update build environment for back-bdb

This commit is contained in:
Kurt Zeilenga 2000-09-25 20:16:19 +00:00
parent ec1f989c79
commit c3ab074c00
2 changed files with 10 additions and 6 deletions

View File

@ -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

View File

@ -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;
}