From owner-svn-ports-head@FreeBSD.ORG Sun May 3 10:01:49 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40903556; Sun, 3 May 2015 10:01:49 +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 15F001A8E; Sun, 3 May 2015 10:01:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t43A1mCF080334; Sun, 3 May 2015 10:01:48 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t43A1mf1080333; Sun, 3 May 2015 10:01:48 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201505031001.t43A1mf1080333@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 3 May 2015 10:01:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385240 - head/www/chromium/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-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 May 2015 10:01:49 -0000 Author: rene Date: Sun May 3 10:01:48 2015 New Revision: 385240 URL: https://svnweb.freebsd.org/changeset/ports/385240 Log: Really fix the build with GCC (for FreeBSD < 10) Submitted by: pkg-fallout Tested by: kwm (multiple iterations) MFH: 2015Q2 Modified: head/www/chromium/files/extra-patch-gcc Modified: head/www/chromium/files/extra-patch-gcc ============================================================================== --- head/www/chromium/files/extra-patch-gcc Sun May 3 09:08:08 2015 (r385239) +++ head/www/chromium/files/extra-patch-gcc Sun May 3 10:01:48 2015 (r385240) @@ -86,3 +86,41 @@ #include #include +--- v8/src/compiler/graph-visualizer.cc.orig 2015-04-28 22:29:10.000000000 +0200 ++++ v8/src/compiler/graph-visualizer.cc 2015-05-02 21:01:32.086593000 +0200 +@@ -5,6 +5,7 @@ + #include "src/compiler/graph-visualizer.h" + + #include ++#include + #include + + #include "src/code-stubs.h" +@@ -25,7 +26,7 @@ + namespace compiler { + + +-FILE* OpenVisualizerLogFile(CompilationInfo* info, const char* phase, ++std::FILE* OpenVisualizerLogFile(CompilationInfo* info, const char* phase, + const char* suffix, const char* mode) { + EmbeddedVector filename; + SmartArrayPointer function_name; +--- v8/src/compiler/graph-visualizer.h.orig 2015-04-28 22:29:10.000000000 +0200 ++++ v8/src/compiler/graph-visualizer.h 2015-05-02 21:34:40.659733000 +0200 +@@ -5,6 +5,7 @@ + #ifndef V8_COMPILER_GRAPH_VISUALIZER_H_ + #define V8_COMPILER_GRAPH_VISUALIZER_H_ + ++#include + #include + + namespace v8 { +@@ -20,7 +21,7 @@ + class Schedule; + class SourcePositionTable; + +-FILE* OpenVisualizerLogFile(CompilationInfo* info, const char* phase, ++std::FILE* OpenVisualizerLogFile(CompilationInfo* info, const char* phase, + const char* suffix, const char* mode); + + struct AsDOT {