summaryrefslogtreecommitdiff
path: root/lib/util
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-03-28 17:46:25 +1100
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:27:13 +1000
commitb0fb567f04240db3e523b5f285f5fe08e01a2a5a (patch)
tree15c8024c8d189d56552100ff7b99036653f282b5 /lib/util
parentab1b0965380e927faa39ce4bf7f7de14e2d29afc (diff)
downloadsamba-b0fb567f04240db3e523b5f285f5fe08e01a2a5a.tar.gz
samba-b0fb567f04240db3e523b5f285f5fe08e01a2a5a.tar.bz2
samba-b0fb567f04240db3e523b5f285f5fe08e01a2a5a.zip
s4-waf: more dependencies on talloc
these are needed so we can support a system talloc without using the bundled talloc.h
Diffstat (limited to 'lib/util')
-rw-r--r--lib/util/wscript_build9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/util/wscript_build b/lib/util/wscript_build
index d2406659dc..6e6dc8eeea 100644
--- a/lib/util/wscript_build
+++ b/lib/util/wscript_build
@@ -11,9 +11,9 @@ bld.SAMBA_LIBRARY('LIBSAMBA-UTIL',
bld.SAMBA_SUBSYSTEM('ASN1_UTIL',
- source='asn1.c',
- local_include=False,
- )
+ source='asn1.c',
+ deps='talloc',
+ local_include=False)
bld.SAMBA_SUBSYSTEM('UNIX_PRIVS',
@@ -27,6 +27,7 @@ bld.SAMBA_SUBSYSTEM('UNIX_PRIVS',
bld.SAMBA_SUBSYSTEM('WRAP_XATTR',
source='wrap_xattr.c',
public_deps='XATTR',
+ deps='talloc',
local_include=False
)
@@ -34,7 +35,7 @@ bld.SAMBA_SUBSYSTEM('WRAP_XATTR',
bld.SAMBA_SUBSYSTEM('UTIL_TDB',
source='util_tdb.c',
local_include=False,
- public_deps='tdb'
+ public_deps='tdb talloc'
)