From 89db591b2a79a85cc9127c67a2697bbc6f326ec6 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 8 Feb 2011 08:56:45 +0100 Subject: s3-waf: add UTIL_TEVENT subsystem (as in ../lib/util/wscript) Guenther --- source3/wscript_build | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'source3/wscript_build') 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') -- cgit