summaryrefslogtreecommitdiff
path: root/source4/lib/com
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-03-17 17:47:49 +1100
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:26:51 +1000
commit87ae97c38181f4228eddb0fb58cd41b25f5342ea (patch)
treedc74d3038e21e3b612ab85d57f5532d6288d99de /source4/lib/com
parent64a528efee86379c4709b8d1ac6c8eff679ca8a1 (diff)
downloadsamba-87ae97c38181f4228eddb0fb58cd41b25f5342ea.tar.gz
samba-87ae97c38181f4228eddb0fb58cd41b25f5342ea.tar.bz2
samba-87ae97c38181f4228eddb0fb58cd41b25f5342ea.zip
build: fixed the build of the com.so library
Diffstat (limited to 'source4/lib/com')
-rw-r--r--source4/lib/com/wscript_build7
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/lib/com/wscript_build b/source4/lib/com/wscript_build
index 4688c1a656..60ab5378ec 100644
--- a/source4/lib/com/wscript_build
+++ b/source4/lib/com/wscript_build
@@ -6,7 +6,12 @@ bld.SAMBA_SUBSYSTEM('COM',
bld.SAMBA_SUBSYSTEM('DCOM',
source='dcom/main.c dcom/tables.c',
- public_deps='COM DCOM_PROXY_DCOM RPC_NDR_REMACT RPC_NDR_OXIDRESOLVER'
+ public_deps='COM DCOM_PROXY_DCOM RPC_NDR_REMACT RPC_NDR_OXIDRESOLVER',
+ # ORPCTHIS maps to this.*, which hits the "No C++ keywords" define
+ # unless we force off developer mode
+ cflags_end = '-UDEVELOPER',
+ # even with the above hack this still doesn't compile - disable it for now
+ enabled=False
)