svn commit: r517218 - head/graphics/gnash/files

Antoine Brodin antoine at FreeBSD.org
Sun Nov 10 17:03:18 UTC 2019


Author: antoine
Date: Sun Nov 10 17:03:17 2019
New Revision: 517218
URL: https://svnweb.freebsd.org/changeset/ports/517218

Log:
  Allow building with giflib >= 5.2

Added:
  head/graphics/gnash/files/patch-libbase_GnashImageGif.cpp   (contents, props changed)

Added: head/graphics/gnash/files/patch-libbase_GnashImageGif.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/gnash/files/patch-libbase_GnashImageGif.cpp	Sun Nov 10 17:03:17 2019	(r517218)
@@ -0,0 +1,11 @@
+--- libbase/GnashImageGif.cpp.orig	2016-07-21 12:25:09 UTC
++++ libbase/GnashImageGif.cpp
+@@ -120,7 +120,7 @@ GifInput::GifInput(std::shared_ptr<IOCha
+ GifInput::~GifInput()
+ {
+     // Clean up allocated data.
+-#if GIFLIB_MAJOR==5 && GIFLIB_MINOR==1
++#if GIFLIB_MAJOR==5 && GIFLIB_MINOR>=1
+ 	DGifCloseFile(_gif, 0);
+ #else
+ 	DGifCloseFile(_gif);


More information about the svn-ports-all mailing list