From owner-svn-ports-all@FreeBSD.ORG Tue Oct 1 21:27:50 2013 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2EBF1EE; Tue, 1 Oct 2013 21:27:50 +0000 (UTC) (envelope-from marino@FreeBSD.org) 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 01F842BD1; Tue, 1 Oct 2013 21:27:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r91LRn4J052417; Tue, 1 Oct 2013 21:27:49 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r91LRnmU052390; Tue, 1 Oct 2013 21:27:49 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201310012127.r91LRnmU052390@svn.freebsd.org> From: John Marino Date: Tue, 1 Oct 2013 21:27:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328997 - head/devel/libopkele/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.14 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, 01 Oct 2013 21:27:50 -0000 Author: marino Date: Tue Oct 1 21:27:49 2013 New Revision: 328997 URL: http://svnweb.freebsd.org/changeset/ports/328997 Log: devel/libopkele: add and other C++ fixes for modern compilers Approved by: portmgr (bapt, implicit) Added: head/devel/libopkele/files/ head/devel/libopkele/files/patch-include_opkele_discovery.h (contents, props changed) head/devel/libopkele/files/patch-test_idiscover.cc (contents, props changed) head/devel/libopkele/files/patch-test_test.cc (contents, props changed) Added: head/devel/libopkele/files/patch-include_opkele_discovery.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libopkele/files/patch-include_opkele_discovery.h Tue Oct 1 21:27:49 2013 (r328997) @@ -0,0 +1,11 @@ +--- include/opkele/discovery.h.orig 2008-06-25 20:50:26.000000000 +0000 ++++ include/opkele/discovery.h +@@ -21,7 +21,7 @@ namespace opkele { + public: + + inline _DT& add(long priority,const _DT& d) { +- return insert(typename map_type::value_type(priority,d))->second; ++ return this->insert(typename map_type::value_type(priority,d))->second; + } + + bool has_value(const _DT& d) const { Added: head/devel/libopkele/files/patch-test_idiscover.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libopkele/files/patch-test_idiscover.cc Tue Oct 1 21:27:49 2013 (r328997) @@ -0,0 +1,10 @@ +--- test/idiscover.cc.orig 2008-06-25 20:50:26.000000000 +0000 ++++ test/idiscover.cc +@@ -2,6 +2,7 @@ + #include + #include + #include ++#include + using namespace std; + #include + #include Added: head/devel/libopkele/files/patch-test_test.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libopkele/files/patch-test_test.cc Tue Oct 1 21:27:49 2013 (r328997) @@ -0,0 +1,9 @@ +--- test/test.cc.orig 2009-12-12 20:22:34.000000000 +0000 ++++ test/test.cc +@@ -1,5 +1,6 @@ + #include + #include ++#include + using namespace std; + #include + #include