From owner-svn-ports-all@FreeBSD.ORG Tue Jan 7 23:22:59 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 14C476D7; Tue, 7 Jan 2014 23:22:59 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F3E801A0D; Tue, 7 Jan 2014 23:22:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s07NMwJJ052377; Tue, 7 Jan 2014 23:22:58 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s07NMwUG052376; Tue, 7 Jan 2014 23:22:58 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401072322.s07NMwUG052376@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 7 Jan 2014 23:22:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r339049 - branches/2014Q1/math/abacus/files X-SVN-Group: ports-branches 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.17 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: Tue, 07 Jan 2014 23:22:59 -0000 Author: mat Date: Tue Jan 7 23:22:58 2014 New Revision: 339049 URL: http://svnweb.freebsd.org/changeset/ports/339049 Log: MFH: r339044 Fix build with gcc47. PR: ports/184571 Submitted by: Christoph Moench-Tegeder Approved by: maintainer Approved by: portmgr (implicit) Added: branches/2014Q1/math/abacus/files/patch-Include-standardpool.inc - copied unchanged from r339044, head/math/abacus/files/patch-Include-standardpool.inc Modified: Directory Properties: branches/2014Q1/ (props changed) Copied: branches/2014Q1/math/abacus/files/patch-Include-standardpool.inc (from r339044, head/math/abacus/files/patch-Include-standardpool.inc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q1/math/abacus/files/patch-Include-standardpool.inc Tue Jan 7 23:22:58 2014 (r339049, copy of r339044, head/math/abacus/files/patch-Include-standardpool.inc) @@ -0,0 +1,20 @@ +--- Include/abacus/standardpool.inc.orig 2013-11-16 14:06:39.000000000 +0100 ++++ Include/abacus/standardpool.inc 2013-11-16 14:08:30.000000000 +0100 +@@ -129,7 +129,7 @@ + + for(int i = 0; i < ABA_POOL::number(); i++) + { +- if(softDeleteConVar(pool_[i]) == 0) ++ if(this->softDeleteConVar(pool_[i]) == 0) + { + nDeleted++; + // consider the case that a slot has been deleted although it was empty +@@ -179,7 +179,7 @@ + + while(nRemoved < maxRemove && !candidates.empty()) { + c = candidates.extractMin(); +- hardDeleteConVar(pool_[c]); ++ this->hardDeleteConVar(pool_[c]); + nRemoved++; + } +