From owner-svn-ports-head@freebsd.org Thu Jan 21 06:43:10 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 E9932A8BBD4; Thu, 21 Jan 2016 06:43:10 +0000 (UTC) (envelope-from vanilla@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 A24F61802; Thu, 21 Jan 2016 06:43:10 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0L6h9O6003604; Thu, 21 Jan 2016 06:43:09 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0L6h94f003600; Thu, 21 Jan 2016 06:43:09 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201601210643.u0L6h94f003600@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Thu, 21 Jan 2016 06:43:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406827 - head/devel/pure-stldict/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: Thu, 21 Jan 2016 06:43:11 -0000 Author: vanilla Date: Thu Jan 21 06:43:09 2016 New Revision: 406827 URL: https://svnweb.freebsd.org/changeset/ports/406827 Log: Fix build with gcc4.9. PR: 204385 Submitted by: gerald@, w.schwarzenfeld@aon.at Approved by: maintainer via twitter. Added: head/devel/pure-stldict/files/patch-hashdict.cc (contents, props changed) head/devel/pure-stldict/files/patch-orddict.cc (contents, props changed) Modified: head/devel/pure-stldict/files/patch-Makefile Modified: head/devel/pure-stldict/files/patch-Makefile ============================================================================== --- head/devel/pure-stldict/files/patch-Makefile Thu Jan 21 06:07:09 2016 (r406826) +++ head/devel/pure-stldict/files/patch-Makefile Thu Jan 21 06:43:09 2016 (r406827) @@ -1,4 +1,4 @@ ---- Makefile.orig 2016-01-21 03:17:01 UTC +--- Makefile.orig 2014-03-22 20:23:33 UTC +++ Makefile @@ -30,7 +30,7 @@ objects = $(patsubst %.cc, %$(DLL), $(cp all: $(objects) Added: head/devel/pure-stldict/files/patch-hashdict.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pure-stldict/files/patch-hashdict.cc Thu Jan 21 06:43:09 2016 (r406827) @@ -0,0 +1,11 @@ +--- hashdict.cc.orig 2016-01-21 06:37:40 UTC ++++ hashdict.cc +@@ -1,6 +1,8 @@ + + // This uses unordered_map, so a recent C++ library is required for now. + ++#include ++#include + #include + #include + #include Added: head/devel/pure-stldict/files/patch-orddict.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pure-stldict/files/patch-orddict.cc Thu Jan 21 06:43:09 2016 (r406827) @@ -0,0 +1,11 @@ +--- orddict.cc.orig 2016-01-21 06:38:47 UTC ++++ orddict.cc +@@ -1,6 +1,8 @@ + + // This is completely analogous to hashdict.cc (which see). + ++#include ++#include + #include + #include + #include