From 577f5c814d1ffc2b9c130d65096ffbdc98364208 Mon Sep 17 00:00:00 2001 From: Francois Andriot Date: Thu, 6 Jun 2013 19:55:40 +0200 Subject: [PATCH] Fix FTBFS with libgif >= 4.2.0 --- kernel/kls_gif/fmt_codec_gif.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/kernel/kls_gif/fmt_codec_gif.cpp b/kernel/kls_gif/fmt_codec_gif.cpp index 80f2dbb..fbdd818 100644 --- a/kernel/kls_gif/fmt_codec_gif.cpp +++ b/kernel/kls_gif/fmt_codec_gif.cpp @@ -39,6 +39,22 @@ extern "C" { #include "../xpm/codec_gif.xpm" +/* GIFLIB_MAJOR is only defined in libgif >= 4.2.0 */ +/* libgif 4.2.0 has retired PrintGifError() and added GifErrorString() */ +#if defined(GIFLIB_MAJOR) && defined(GIFLIB_MINOR) && \ + ((GIFLIB_MAJOR == 4 && GIFLIB_MINOR >= 2) || GIFLIB_MAJOR > 4) +static void PrintGifError(void) +{ + char *Err = GifErrorString(); + + if (Err != NULL) { + fprintf(stderr, "\nGIF-LIB error: %s.\n", Err); + } else { + fprintf(stderr, "\nGIF-LIB undefined error %d.\n", GifError()); + } +} +#endif + /* * * Originally designed to facilitate image transfer and online