diff options
author | Günther Deschner <gd@samba.org> | 2011-02-08 08:56:45 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-02-14 13:38:53 +0100 |
commit | 89db591b2a79a85cc9127c67a2697bbc6f326ec6 (patch) | |
tree | 894edbdde0abd2c8e79f7e505c20c54cfc408df4 /source3/wscript_build | |
parent | 850bf67c452bcb8570e2fb0af77296754bec98cc (diff) | |
download | samba-89db591b2a79a85cc9127c67a2697bbc6f326ec6.tar.gz samba-89db591b2a79a85cc9127c67a2697bbc6f326ec6.tar.bz2 samba-89db591b2a79a85cc9127c67a2697bbc6f326ec6.zip |
s3-waf: add UTIL_TEVENT subsystem (as in ../lib/util/wscript)
Guenther
Diffstat (limited to 'source3/wscript_build')
-rw-r--r-- | source3/wscript_build | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 83fbbdb125..19b8f4a615 100644 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -67,9 +67,6 @@ UTIL_SRC = ''' ../lib/util/smb_threads.c ../lib/util/system.c ../lib/util/talloc_stack.c - ../lib/util/tevent_ntstatus.c - ../lib/util/tevent_unix.c - ../lib/util/tevent_werror.c ../lib/util/time.c ../lib/util/util.c ../lib/util/util_file.c @@ -969,6 +966,14 @@ bld.SAMBA_SUBSYSTEM('UTIL_TDB', public_deps='tdb talloc' ) +bld.SAMBA_SUBSYSTEM('UTIL_TEVENT', + source='../lib/util/tevent_unix.c ../lib/util/tevent_ntstatus.c ../lib/util/tevent_werror.c', + local_include=False, + public_deps='tevent', + public_headers='../lib/util/tevent_ntstatus.h ../lib/util/tevent_unix.h ../lib/util/tevent_werror.h', + header_path=[ ('*', 'util') ], + ) + bld.SAMBA_SUBSYSTEM('LIBNET', source=LIBNET_SRC, deps='NDR_LIBNET_JOIN', @@ -1056,7 +1061,7 @@ bld.SAMBA_SUBSYSTEM('ndr-standard', vars=locals()) #FIXME -bld.SAMBA_SUBSYSTEM('dcerpc', '') +bld.SAMBA_SUBSYSTEM('dcerpc', '', deps='UTIL_TEVENT') bld.SAMBA_SUBSYSTEM('ldb', source='lib/ldb_compat.c') |