From owner-svn-ports-all@FreeBSD.ORG Wed Apr 24 22:52:16 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id DCD28444; Wed, 24 Apr 2013 22:52:16 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id CF5B51298; Wed, 24 Apr 2013 22:52:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r3OMqG4M065425; Wed, 24 Apr 2013 22:52:16 GMT (envelope-from mi@svn.freebsd.org) Received: (from mi@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r3OMqGGF065424; Wed, 24 Apr 2013 22:52:16 GMT (envelope-from mi@svn.freebsd.org) Message-Id: <201304242252.r3OMqGGF065424@svn.freebsd.org> From: Mikhail Teterin Date: Wed, 24 Apr 2013 22:52:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r316483 - head/audio/arts/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: Wed, 24 Apr 2013 22:52:16 -0000 Author: mi Date: Wed Apr 24 22:52:16 2013 New Revision: 316483 URL: http://svnweb.freebsd.org/changeset/ports/316483 Log: Add a collection of patches to explicitly include some headers, that g++48 does not include implicitly (any more). This allows compiling arts with g++48. Added: head/audio/arts/files/patch-g++48 (contents, props changed) Added: head/audio/arts/files/patch-g++48 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/arts/files/patch-g++48 Wed Apr 24 22:52:16 2013 (r316483) @@ -0,0 +1,36 @@ +Explicitly include certain things, because g++48 requires it. + + -mi + +--- mcop/tcpconnection.cc 2008-02-13 04:35:23.000000000 -0500 ++++ mcop/tcpconnection.cc 2013-04-24 18:32:16.000000000 -0400 +@@ -36,4 +36,5 @@ + #include "debug.h" + #include ++#include + + using namespace std; +--- mcop/unixconnection.cc 2008-02-13 04:35:23.000000000 -0500 ++++ mcop/unixconnection.cc 2013-04-24 18:32:25.000000000 -0400 +@@ -30,4 +30,5 @@ + #include + #include ++#include + + using namespace std; +--- mcop/unixserver.cc 2007-10-08 05:47:08.000000000 -0400 ++++ mcop/unixserver.cc 2013-04-24 18:33:33.000000000 -0400 +@@ -41,4 +41,5 @@ + #include + #include ++#include + + using namespace std; +--- mcop/mcoputils.cc 2008-02-13 04:35:23.000000000 -0500 ++++ mcop/mcoputils.cc 2013-04-24 18:35:58.000000000 -0400 +@@ -24,4 +24,5 @@ + #include "mcopconfig.h" + #include "debug.h" ++#include + #include + #include