From owner-svn-ports-all@FreeBSD.ORG Sat Jan 3 01:07:51 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B35854BB; Sat, 3 Jan 2015 01:07:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9EDD62B59; Sat, 3 Jan 2015 01:07:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0317p19071440; Sat, 3 Jan 2015 01:07:51 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0317p2M071439; Sat, 3 Jan 2015 01:07:51 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201501030107.t0317p2M071439@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 3 Jan 2015 01:07:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376076 - head/graphics/libgfx/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Jan 2015 01:07:51 -0000 Author: marino Date: Sat Jan 3 01:07:50 2015 New Revision: 376076 URL: https://svnweb.freebsd.org/changeset/ports/376076 QAT: https://qat.redports.org/buildarchive/r376076/ Log: graphics/libgfx: #include This is fallout from png upgrade. Modern GCC needs for memcpy, although clang seems to be happy without it. Modified: head/graphics/libgfx/files/patch-png.cxx Modified: head/graphics/libgfx/files/patch-png.cxx ============================================================================== --- head/graphics/libgfx/files/patch-png.cxx Sat Jan 3 00:08:47 2015 (r376075) +++ head/graphics/libgfx/files/patch-png.cxx Sat Jan 3 01:07:50 2015 (r376076) @@ -1,6 +1,14 @@ ---- src/raster-png.cxx.orig 2004-09-27 06:45:31.000000000 +0200 -+++ src/raster-png.cxx 2012-05-04 12:59:52.000000000 +0200 -@@ -42,7 +42,7 @@ +--- src/raster-png.cxx.orig 2004-09-27 04:45:31 UTC ++++ src/raster-png.cxx +@@ -9,6 +9,7 @@ + + ************************************************************************/ + ++#include + #include + #include + #include +@@ -42,7 +43,7 @@ ByteRaster *read_png_image(const char *f // Because we didn't set up any error handlers, we need to be // prepared to handle longjmps out of the library on error // conditions. @@ -9,7 +17,7 @@ { png_destroy_read_struct(&png_ptr, &info_ptr, NULL); fclose(fp); -@@ -132,7 +132,7 @@ +@@ -132,7 +133,7 @@ bool write_png_image(const char *file_na return false; }