diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-21 15:27:50 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-21 19:03:26 +1100 |
commit | cef53b289b28e208602e34cfe8c93e05102bdc29 (patch) | |
tree | 2730a6197a9c3edd721f8a9ab1ccba43ac12cde1 | |
parent | 11bce8ce0334d2c903962fe901a34ff45bb150e8 (diff) | |
download | samba-cef53b289b28e208602e34cfe8c93e05102bdc29.tar.gz samba-cef53b289b28e208602e34cfe8c93e05102bdc29.tar.bz2 samba-cef53b289b28e208602e34cfe8c93e05102bdc29.zip |
s4-waf: removed the dependency loop between ntvfs and dcerpc_server
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
-rw-r--r-- | source4/ntvfs/wscript_build | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/source4/ntvfs/wscript_build b/source4/ntvfs/wscript_build index 1dd67216d3..48810f5dd3 100644 --- a/source4/ntvfs/wscript_build +++ b/source4/ntvfs/wscript_build @@ -49,7 +49,7 @@ bld.SAMBA_MODULE('ntvfs_ipc', autoproto='ipc/proto.h', subsystem='ntvfs', init_function='ntvfs_ipc_init', - deps='NDR_NAMED_PIPE_AUTH NAMED_PIPE_AUTH_TSTREAM gssapi CREDENTIALS DCERPC_COMMON' + deps='NDR_NAMED_PIPE_AUTH NAMED_PIPE_AUTH_TSTREAM gssapi CREDENTIALS' ) @@ -60,8 +60,10 @@ bld.SAMBA_MODULE('ntvfs_nbench', ) -bld.SAMBA_SUBSYSTEM('ntvfs', - source='ntvfs_base.c ntvfs_generic.c ntvfs_interface.c ntvfs_util.c', - autoproto='ntvfs_proto.h' - ) +bld.SAMBA_LIBRARY('ntvfs', + source='ntvfs_base.c ntvfs_generic.c ntvfs_interface.c ntvfs_util.c', + autoproto='ntvfs_proto.h', + deps='tevent', + private_library=True + ) |