Hi,
while upgrading the latest releases, I ran into problem with the libgif
5.1.1 installed on OpenBSD, that EGifCloseFile() is called with too few
arguments. Seems with 5.1.0, it got added the second argument, like
DGifClose got, patch below fixes issue for me.
OK to commit?
--- Source/NSBitmapImageRep+GIF.m.orig Mon May 25 19:30:24 2015
+++ Source/NSBitmapImageRep+GIF.m Mon May 25 19:30:40 2015
@@ -64,6 +64,7 @@ objective-c headers.
// GIF> 5.1
#if GIFLIB_MAJOR >= 5 && GIFLIB_MINOR >= 1
#define DGifCloseFile(f) DGifCloseFile(f, NULL)
+ #define EGifCloseFile(f) EGifCloseFile(f, NULL)
#endif
/* -----------------------------------------------------------
_______________________________________________
Gnustep-dev mailing list
Gnustep-dev@gnu.org
https://lists.gnu.org/mailman/listinfo/gnustep-dev