From 87ae97c38181f4228eddb0fb58cd41b25f5342ea Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 17 Mar 2010 17:47:49 +1100 Subject: build: fixed the build of the com.so library --- source4/lib/com/wscript_build | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'source4/lib') 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 ) -- cgit