svn commit: r401355 - head/textproc/libextractor/files

Antoine Brodin antoine at FreeBSD.org
Thu Nov 12 15:01:09 UTC 2015


Author: antoine
Date: Thu Nov 12 15:01:07 2015
New Revision: 401355
URL: https://svnweb.freebsd.org/changeset/ports/401355

Log:
  Allow building with giflib 5.1
  
  PR:		204492

Added:
  head/textproc/libextractor/files/patch-src_plugins_gif__extractor.c   (contents, props changed)

Added: head/textproc/libextractor/files/patch-src_plugins_gif__extractor.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libextractor/files/patch-src_plugins_gif__extractor.c	Thu Nov 12 15:01:07 2015	(r401355)
@@ -0,0 +1,26 @@
+--- src/plugins/gif_extractor.c.orig	2013-06-21 16:00:16 UTC
++++ src/plugins/gif_extractor.c
+@@ -78,7 +78,11 @@ EXTRACTOR_gif_extract_method (struct EXT
+   if (gif_file == NULL || gif_error != 0)
+   {
+     if (gif_file != NULL)
++#if GIFLIB_MAJOR == 5 && GIFLIB_MINOR >= 1 || GIFLIB_MAJOR > 5
++      EGifCloseFile (gif_file, NULL);
++#else
+       EGifCloseFile (gif_file);
++#endif
+     return; /* not a GIF */
+   }
+ #endif
+@@ -133,7 +137,11 @@ EXTRACTOR_gif_extract_method (struct EXT
+ 	       DGifGetExtensionNext(gif_file, &ext)) &&
+ 	      (NULL != ext) ) ; /* keep going */
+     }
++#if GIFLIB_MAJOR == 5 && GIFLIB_MINOR >= 1 || GIFLIB_MAJOR > 5
++  DGifCloseFile (gif_file, NULL);
++#else
+   DGifCloseFile (gif_file);
++#endif
+ }
+ 
+ /* end of gif_extractor.c */


More information about the svn-ports-all mailing list