diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-17 17:47:49 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:51 +1000 |
commit | 87ae97c38181f4228eddb0fb58cd41b25f5342ea (patch) | |
tree | dc74d3038e21e3b612ab85d57f5532d6288d99de /source4 | |
parent | 64a528efee86379c4709b8d1ac6c8eff679ca8a1 (diff) | |
download | samba-87ae97c38181f4228eddb0fb58cd41b25f5342ea.tar.gz samba-87ae97c38181f4228eddb0fb58cd41b25f5342ea.tar.bz2 samba-87ae97c38181f4228eddb0fb58cd41b25f5342ea.zip |
build: fixed the build of the com.so library
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/com/wscript_build | 7 |
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 ) |