mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
63a6381a26
This is a dbwrap backend for ntdb. It's a fairly straight conversion from the tdb version. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
13 lines
366 B
Plaintext
13 lines
366 B
Plaintext
SRC = '''dbwrap.c dbwrap_util.c dbwrap_rbt.c dbwrap_cache.c dbwrap_tdb.c
|
|
dbwrap_local_open.c'''
|
|
DEPS= '''samba-util util_tdb errors tdb tdb-wrap'''
|
|
|
|
if not bld.env.disable_ntdb:
|
|
SRC += " dbwrap_ntdb.c"
|
|
DEPS += " util_ntdb"
|
|
|
|
bld.SAMBA_LIBRARY('dbwrap',
|
|
source=SRC,
|
|
deps=DEPS,
|
|
private_library=True)
|