Date: Sat, 3 Jan 2015 02:37:45 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376079 - head/graphics/apngdis/files Message-ID: <201501030237.t032bjXb013786@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Sat Jan 3 02:37:44 2015 New Revision: 376079 URL: https://svnweb.freebsd.org/changeset/ports/376079 QAT: https://qat.redports.org/buildarchive/r376079/ Log: graphics/apngdis: #include <cstring> This is fallout from png upgrade. Modern GCC needs <cstring> for memcpy, although clang seems to be happy without it. Added: head/graphics/apngdis/files/patch-apngdis.cpp (contents, props changed) Added: head/graphics/apngdis/files/patch-apngdis.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/apngdis/files/patch-apngdis.cpp Sat Jan 3 02:37:44 2015 (r376079) @@ -0,0 +1,10 @@ +--- apngdis.cpp.orig 2015-01-03 02:18:00 UTC ++++ apngdis.cpp +@@ -30,6 +30,7 @@ + #include <stdio.h> + #include <stdlib.h> + #include <vector> ++#include <cstring> + #include "png.h" /* original (unpatched) libpng is ok */ + #include "zlib.h" + using namespace std;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501030237.t032bjXb013786>