diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2008-05-30 13:34:52 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2008-05-30 13:34:52 +0000 |
commit | 2ab7f3ddb34dfa94faf40aa9bbf7c453a8c7f5b9 (patch) | |
tree | a07e74e0733a6ca605471c883fc46b1de257c3d7 /gdk-pixbuf | |
parent | cbdc3e990c64a9f7295bfd951f87c766efbb82d0 (diff) | |
download | gtk+-2ab7f3ddb34dfa94faf40aa9bbf7c453a8c7f5b9.tar.gz |
Fix INCLUDE_ macros
svn path=/trunk/; revision=20259
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/ChangeLog | 6 | ||||
-rw-r--r-- | gdk-pixbuf/io-icns.c | 2 | ||||
-rw-r--r-- | gdk-pixbuf/io-ico.c | 2 | ||||
-rw-r--r-- | gdk-pixbuf/io-jasper.c | 2 |
4 files changed, 9 insertions, 3 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index 24191a65c0..9876a059b4 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,5 +1,11 @@ 2008-05-29 Matthias Clasen <mclasen@redhat.com> + * io-jasper.c: + * io-ico.c: + * io-icns.c: Use the correct INCLUDE_ macros. + +2008-05-29 Matthias Clasen <mclasen@redhat.com> + * === Released 2.13.1 === 2008-05-29 Matthias Clasen <mclasen@redhat.com> diff --git a/gdk-pixbuf/io-icns.c b/gdk-pixbuf/io-icns.c index fb043d6bcd..df6703fb4b 100644 --- a/gdk-pixbuf/io-icns.c +++ b/gdk-pixbuf/io-icns.c @@ -364,7 +364,7 @@ icns_image_load (FILE *f, GError ** error) return pixbuf; } -#ifndef INCLUDE_png +#ifndef INCLUDE_icns #define MODULE_ENTRY(function) G_MODULE_EXPORT void function #else #define MODULE_ENTRY(function) void _gdk_pixbuf__icns_ ## function diff --git a/gdk-pixbuf/io-ico.c b/gdk-pixbuf/io-ico.c index 1fe1eff848..27937c96ba 100644 --- a/gdk-pixbuf/io-ico.c +++ b/gdk-pixbuf/io-ico.c @@ -1184,7 +1184,7 @@ gdk_pixbuf__ico_image_save (FILE *f, return TRUE; } -#ifndef INCLUDE_png +#ifndef INCLUDE_ico #define MODULE_ENTRY(function) G_MODULE_EXPORT void function #else #define MODULE_ENTRY(function) void _gdk_pixbuf__ico_ ## function diff --git a/gdk-pixbuf/io-jasper.c b/gdk-pixbuf/io-jasper.c index c6f9bc2943..bf8de231cf 100644 --- a/gdk-pixbuf/io-jasper.c +++ b/gdk-pixbuf/io-jasper.c @@ -262,7 +262,7 @@ jasper_image_load_increment (gpointer data, const guchar *buf, guint size, GErro return TRUE; } -#ifndef INCLUDE_png +#ifndef INCLUDE_jasper #define MODULE_ENTRY(function) G_MODULE_EXPORT void function #else #define MODULE_ENTRY(function) void _gdk_pixbuf__jasper_ ## function |