mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
Update build environment for back-bdb
This commit is contained in:
parent
ec1f989c79
commit
c3ab074c00
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user