Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Nov 2019 17:03:17 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r517218 - head/graphics/gnash/files
Message-ID:  <201911101703.xAAH3H7e032901@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911101703.xAAH3H7e032901>