diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-21 20:21:10 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-21 20:56:38 +1100 |
commit | 4fa0ceb7517de755b20179f2728532811f62c845 (patch) | |
tree | 7468b4a00626fed9c46f96edd8f48da93b9d9180 /source4/librpc/wscript_build | |
parent | 3c748714bb2a81004673db8a77ea5699f3cc73d0 (diff) | |
download | samba-4fa0ceb7517de755b20179f2728532811f62c845.tar.gz samba-4fa0ceb7517de755b20179f2728532811f62c845.tar.bz2 samba-4fa0ceb7517de755b20179f2728532811f62c845.zip |
waf: RPC_NDR_WINBIND is samba4 specific
this caused problems with the s3 waf build
Diffstat (limited to 'source4/librpc/wscript_build')
-rwxr-xr-x | source4/librpc/wscript_build | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source4/librpc/wscript_build b/source4/librpc/wscript_build index 83f7df38bc..920d6a2c31 100755 --- a/source4/librpc/wscript_build +++ b/source4/librpc/wscript_build @@ -110,6 +110,14 @@ bld.SAMBA_LIBRARY('NDR_SAMBA4', grouping_library=True ) +# a grouping library for RPC_NDR subsystems that may be used by more than one target +bld.SAMBA_LIBRARY('RPC_NDR_SAMBA4', + source=[], + deps='RPC_NDR_WINBIND', + private_library=True, + grouping_library=True + ) + bld.SAMBA_PIDL_TABLES('GEN_NDR_TABLES', 'gen_ndr/tables.c') |