diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-28 15:43:26 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:12 +1000 |
commit | 01682f797f755fdd6de5b6096275da7488f0f294 (patch) | |
tree | 46a73e8799be702a102ed301ba01e797f460204c /lib | |
parent | c2d17cf978cb2d5275b2915fb0a87daa79acc28b (diff) | |
download | samba-01682f797f755fdd6de5b6096275da7488f0f294.tar.gz samba-01682f797f755fdd6de5b6096275da7488f0f294.tar.bz2 samba-01682f797f755fdd6de5b6096275da7488f0f294.zip |
s4-waf: fixed some deps now we don't auto-include tevent and replace
this is preparation for being able to use system versions of these
libraries
Diffstat (limited to 'lib')
-rw-r--r-- | lib/socket_wrapper/wscript_build | 4 | ||||
-rw-r--r-- | lib/util/wscript_build | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/socket_wrapper/wscript_build b/lib/socket_wrapper/wscript_build index d5ca1107a6..9fc05e5a38 100644 --- a/lib/socket_wrapper/wscript_build +++ b/lib/socket_wrapper/wscript_build @@ -1,6 +1,6 @@ #!/usr/bin/env python bld.SAMBA_SUBSYSTEM('SOCKET_WRAPPER', - source='socket_wrapper.c' - ) + source='socket_wrapper.c', + deps='replace') diff --git a/lib/util/wscript_build b/lib/util/wscript_build index 57ac729f47..d2406659dc 100644 --- a/lib/util/wscript_build +++ b/lib/util/wscript_build @@ -2,7 +2,7 @@ bld.SAMBA_LIBRARY('LIBSAMBA-UTIL', source='xfile.c debug.c fault.c signal.c system.c time.c genrand.c dprintf.c util_str.c rfc1738.c substitute.c util_strlist.c util_file.c data_blob.c util.c blocking.c util_net.c fsusage.c ms_fnmatch.c mutex.c idtree.c become_daemon.c rbtree.c talloc_stack.c smb_threads.c params.c parmlist.c util_id.c', - public_deps='talloc LIBCRYPTO LIBREPLACE_NETWORK CHARSET execinfo UID_WRAPPER', + public_deps='talloc LIBCRYPTO LIBREPLACE_NETWORK CHARSET execinfo UID_WRAPPER tevent', public_headers='attr.h byteorder.h data_blob.h debug.h memory.h mutex.h safe_string.h time.h talloc_stack.h xfile.h dlinklist.h util.h', header_path= [ ('dlinklist.h util.h', '.'), ('*', 'util') ], local_include=False, |