summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-21 20:21:10 +1100
committerAndrew Tridgell <tridge@samba.org>2010-10-21 20:56:38 +1100
commit4fa0ceb7517de755b20179f2728532811f62c845 (patch)
tree7468b4a00626fed9c46f96edd8f48da93b9d9180
parent3c748714bb2a81004673db8a77ea5699f3cc73d0 (diff)
downloadsamba-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
-rw-r--r--librpc/wscript_build2
-rwxr-xr-xsource4/librpc/wscript_build8
2 files changed, 9 insertions, 1 deletions
diff --git a/librpc/wscript_build b/librpc/wscript_build
index c40d07b2d7..4a45095eec 100644
--- a/librpc/wscript_build
+++ b/librpc/wscript_build
@@ -484,7 +484,7 @@ bld.SAMBA_LIBRARY('NDR_SAMBA',
# a grouping library for RPC_NDR subsystems that may be used by more than one target
bld.SAMBA_LIBRARY('RPC_NDR_SAMBA',
source=[],
- deps='RPC_NDR_DRSUAPI RPC_NDR_LSA RPC_NDR_WINBIND RPC_NDR_WINREG',
+ deps='RPC_NDR_DRSUAPI RPC_NDR_LSA RPC_NDR_WINREG',
private_library=True,
grouping_library=True
)
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')