diff options
author | Günther Deschner <gd@samba.org> | 2010-12-14 13:27:24 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-12-14 22:42:17 +0100 |
commit | 192838aafdf2e696c33e7443b9e74893309158b2 (patch) | |
tree | cf0ced819189acf445bef34861b104459cf767af | |
parent | 2407e33c7667fbaabff84edf81c13526a06ebac5 (diff) | |
download | samba-192838aafdf2e696c33e7443b9e74893309158b2.tar.gz samba-192838aafdf2e696c33e7443b9e74893309158b2.tar.bz2 samba-192838aafdf2e696c33e7443b9e74893309158b2.zip |
s3-waf: convert lib/util_tdb.c into a subsystem.
Guenther
-rw-r--r-- | source3/wscript_build | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 9845a63a37..ce1bf2bca6 100644 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,7 +3,7 @@ from samba_utils import * import samba_version -TDB_LIB_SRC = '''lib/util_tdb.c ../lib/util/util_tdb.c +TDB_LIB_SRC = '''../lib/util/util_tdb.c lib/dbwrap.c lib/dbwrap_tdb.c lib/dbwrap_ctdb.c lib/g_lock.c @@ -889,7 +889,7 @@ bld.SAMBA_SUBSYSTEM('KRBCLIENT', bld.SAMBA_SUBSYSTEM('LIBS', source=LIB_SRC, - deps='iconv LIBCRYPTO ndr security NDR_SECURITY charset NDR_MESSAGING LIBASYNC_REQ', + deps='iconv LIBCRYPTO ndr security NDR_SECURITY charset NDR_MESSAGING LIBASYNC_REQ tdb-wrap', vars=locals()) bld.SAMBA_SUBSYSTEM('LIB_NONSMBD', @@ -1057,6 +1057,9 @@ bld.SAMBA_SUBSYSTEM('ndr', source=LIBNDR_SRC, vars=locals()) +bld.SAMBA_SUBSYSTEM('tdb-wrap', + source='lib/util_tdb.c', + vars=locals()) #FIXME bld.SAMBA_SUBSYSTEM('ndr-standard', source='', |