aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-12-28 16:54:08 +0800
committerTor Lillqvist <tml@src.gnome.org>2005-12-28 16:54:08 +0800
commit1bcb85428a3695ee17c2edfcfc2ad22950962a7d (patch)
tree2afacd2138da9819709adcb685111d9c0d2ae0a7 /shell
parent2cf35e29f25c263d50a8a07706531a2b0a282863 (diff)
downloadgsoc2013-evolution-1bcb85428a3695ee17c2edfcfc2ad22950962a7d.tar
gsoc2013-evolution-1bcb85428a3695ee17c2edfcfc2ad22950962a7d.tar.gz
gsoc2013-evolution-1bcb85428a3695ee17c2edfcfc2ad22950962a7d.tar.bz2
gsoc2013-evolution-1bcb85428a3695ee17c2edfcfc2ad22950962a7d.tar.lz
gsoc2013-evolution-1bcb85428a3695ee17c2edfcfc2ad22950962a7d.tar.xz
gsoc2013-evolution-1bcb85428a3695ee17c2edfcfc2ad22950962a7d.tar.zst
gsoc2013-evolution-1bcb85428a3695ee17c2edfcfc2ad22950962a7d.zip
Guard against generating code when running this through the IDL compiler
2005-12-22 Tor Lillqvist <tml@novell.com> * Evolution-Shell.idl: Guard against generating code when running this through the IDL compiler elsewhere than here in evo/shell, the same way as in Evolution-Component.idl. Otherwise we get duplicated IDL-generated functions in the libeshell and libevolution-mail DLLs (shared libraries), which causes much pain on Win32 at least, and is useless and potentially risky on all platforms. svn path=/trunk/; revision=30966
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog10
-rw-r--r--shell/Evolution-Shell.idl14
2 files changed, 24 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index a7f732deb9..10ddc92c27 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,13 @@
+2005-12-22 Tor Lillqvist <tml@novell.com>
+
+ * Evolution-Shell.idl: Guard against generating code when running
+ this through the IDL compiler elsewhere than here in evo/shell,
+ the same way as in Evolution-Component.idl. Otherwise we get
+ duplicated IDL-generated functions in the libeshell and
+ libevolution-mail DLLs (shared libraries), which causes much pain
+ on Win32 at least, and is useless and potentially risky on all
+ platforms.
+
2005-09-24 Andre Klapper <a9016009@gmx.de>:
Reviewed and committed by Harish <kharish@novell.com>
diff --git a/shell/Evolution-Shell.idl b/shell/Evolution-Shell.idl
index c5999c9776..49875ea95a 100644
--- a/shell/Evolution-Shell.idl
+++ b/shell/Evolution-Shell.idl
@@ -13,6 +13,15 @@
#include <Bonobo.idl>
+#ifndef __evolution_shell_COMPILATION
+#ifdef __ORBIT_IDL__
+%{
+#pragma include_defs shell/evolution-component.h
+%}
+#pragma inhibit push
+#endif
+#endif
+
module GNOME {
module Evolution {
@@ -69,4 +78,9 @@ module Evolution {
};
};
+#ifndef __evolution_shell_COMPILATION
+#ifdef __ORBIT_IDL__
+#pragma inhibit pop
+#endif
#endif
+#endif /* _GNOME_EVOLUTION_SHELL_IDL */