Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Jan 2015 02:05:42 +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: r376078 - head/graphics/png2ico/files
Message-ID:  <201501030205.t0325gMr099377@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Sat Jan  3 02:05:41 2015
New Revision: 376078
URL: https://svnweb.freebsd.org/changeset/ports/376078
QAT: https://qat.redports.org/buildarchive/r376078/

Log:
  graphics/png2ico: #include <cstring>
  
  This is fallout from png upgrade.  Modern GCC needs <cstring> for memset,
  although clang seems to be happy without it.

Modified:
  head/graphics/png2ico/files/patch-png2ico.cpp

Modified: head/graphics/png2ico/files/patch-png2ico.cpp
==============================================================================
--- head/graphics/png2ico/files/patch-png2ico.cpp	Sat Jan  3 01:30:36 2015	(r376077)
+++ head/graphics/png2ico/files/patch-png2ico.cpp	Sat Jan  3 02:05:41 2015	(r376078)
@@ -1,10 +1,11 @@
---- png2ico.cpp.orig
+--- png2ico.cpp.orig	2002-12-07 22:37:58 UTC
 +++ png2ico.cpp
-@@ -33,6 +33,7 @@
+@@ -33,6 +33,8 @@ Notes about transparent and inverted pix
  
  
  #include <cstdio>
++#include <cstring>
 +#include <cstdlib>
  #include <vector>
  #include <climits>
-
+ 



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