1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/lib/dbwrap/wscript_build
Rusty Russell 63a6381a26 dbwrap: dbwrap_ntdb.c
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>
2013-02-20 05:31:19 +01:00

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)