summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/gdk-pixbuf-features.h.in
diff options
context:
space:
mode:
authorMichael Natterer <mitch@imendio.com>2008-05-27 12:50:45 +0000
committerMichael Natterer <mitch@src.gnome.org>2008-05-27 12:50:45 +0000
commit4449e5032c960e324604ea1b8e482b83c5ad429a (patch)
tree6a7e37daaab34676360be33e5d05564633f2290c /gdk-pixbuf/gdk-pixbuf-features.h.in
parentf498fc887f97b5a8f4f2553325e975897d9f8e6b (diff)
downloadgtk+-4449e5032c960e324604ea1b8e482b83c5ad429a.tar.gz
put back the #define, but call it GDK_PIXBUF_C_COMPILATION.
2008-05-27 Michael Natterer <mitch@imendio.com> * gdk-pixbuf.c: put back the #define, but call it GDK_PIXBUF_C_COMPILATION. * gdk-pixbuf-features.h.in: make variable export depend on that define instead of GDK_PIXBUF_COMPILATION. svn path=/trunk/; revision=20189
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf-features.h.in')
-rw-r--r--gdk-pixbuf/gdk-pixbuf-features.h.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-features.h.in b/gdk-pixbuf/gdk-pixbuf-features.h.in
index e1e28f95e8..40f946a117 100644
--- a/gdk-pixbuf/gdk-pixbuf-features.h.in
+++ b/gdk-pixbuf/gdk-pixbuf-features.h.in
@@ -13,15 +13,15 @@
# ifdef GDK_PIXBUF_STATIC_COMPILATION
# define GDK_PIXBUF_VAR extern
# else /* !GDK_PIXBUF_STATIC_COMPILATION */
-# ifdef GDK_PIXBUF_COMPILATION
+# ifdef GDK_PIXBUF_C_COMPILATION
# ifdef DLL_EXPORT
# define GDK_PIXBUF_VAR __declspec(dllexport)
# else /* !DLL_EXPORT */
# define GDK_PIXBUF_VAR extern
# endif /* !DLL_EXPORT */
-# else /* !GDK_PIXBUF_COMPILATION */
+# else /* !GDK_PIXBUF_C_COMPILATION */
# define GDK_PIXBUF_VAR extern __declspec(dllimport)
-# endif /* !GDK_PIXBUF_COMPILATION */
+# endif /* !GDK_PIXBUF_C_COMPILATION */
# endif /* !GDK_PIXBUF_STATIC_COMPILATION */
#else /* !G_PLATFORM_WIN32 */
# define GDK_PIXBUF_VAR extern