summaryrefslogtreecommitdiff
path: root/source4/lib/com
diff options
context:
space:
mode:
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
)