From owner-svn-ports-head@freebsd.org Sun Nov 6 09:24:01 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F0134C32463; Sun, 6 Nov 2016 09:24:01 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 BF53CA26; Sun, 6 Nov 2016 09:24:01 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA69O0ZB072860; Sun, 6 Nov 2016 09:24:00 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA69O0a7072859; Sun, 6 Nov 2016 09:24:00 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201611060924.uA69O0a7072859@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 6 Nov 2016 09:24:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425476 - head/benchmarks/polygraph/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.23 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, 06 Nov 2016 09:24:02 -0000 Author: antoine Date: Sun Nov 6 09:24:00 2016 New Revision: 425476 URL: https://svnweb.freebsd.org/changeset/ports/425476 Log: Fix build with gcc 4.9 PR: 196712 Added: head/benchmarks/polygraph/files/patch-src_xstd_Ring.h (contents, props changed) Added: head/benchmarks/polygraph/files/patch-src_xstd_Ring.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/polygraph/files/patch-src_xstd_Ring.h Sun Nov 6 09:24:00 2016 (r425476) @@ -0,0 +1,18 @@ +commit a1b938b85e2b9aabb95fb09b9f7137b27135ea72 +Author: Alex Rousskov +Date: Thu Jan 7 08:20:34 2016 -0700 + + lp:1380660: Make failed if gcc 4.9 is used. + + Merged POLY-43-lp1380660-make-failed-if-gcc-49-. + +--- src/xstd/Ring.h.orig 2014-10-22 23:22:22 UTC ++++ src/xstd/Ring.h +@@ -19,6 +19,7 @@ class Ring: protected Array { + + using Array::capacity; + using Array::size; ++ using Array::Value; + + int count() const { return theInOff - theOutOff; } + bool empty() const { return theInOff <= theOutOff; }