diff options
-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 |