swrap: Update copyright notice.
[sfrench/samba-autobuild/.git] / lib / dbwrap / wscript_build
1 SRC = '''dbwrap.c dbwrap_util.c dbwrap_rbt.c dbwrap_cache.c dbwrap_tdb.c
2          dbwrap_local_open.c'''
3 DEPS= '''samba-util util_tdb errors tdb tdb-wrap'''
4
5 if not bld.env.disable_ntdb:
6    SRC += " dbwrap_ntdb.c"
7    DEPS += " util_ntdb"
8
9 bld.SAMBA_LIBRARY('dbwrap',
10                   source=SRC,
11                   deps=DEPS,
12                   private_library=True)