From owner-svn-ports-all@FreeBSD.ORG Fri Feb 28 08:09:39 2014 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 ESMTPS id 7E954F9C; Fri, 28 Feb 2014 08:09:39 +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 6A8E31CC2; Fri, 28 Feb 2014 08:09:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1S89dkF063229; Fri, 28 Feb 2014 08:09:39 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1S89d9W063227; Fri, 28 Feb 2014 08:09:39 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201402280809.s1S89d9W063227@svn.freebsd.org> From: Warner Losh Date: Fri, 28 Feb 2014 08:09:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r346452 - in branches/2014Q1/emulators/gxemul: . 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: Fri, 28 Feb 2014 08:09:39 -0000 Author: imp Date: Fri Feb 28 08:09:38 2014 New Revision: 346452 URL: http://svnweb.freebsd.org/changeset/ports/346452 QAT: https://qat.redports.org/buildarchive/r346452/ Log: MFH: r346073 Force gcc, since gxemul isn't clang ready yet. Fix for building with gcc 4.6 due to slight differences in namespace pollution. Approved by: portmgr (bapt) Added: branches/2014Q1/emulators/gxemul/files/patch-ab - copied unchanged from r346073, head/emulators/gxemul/files/patch-ab Modified: branches/2014Q1/emulators/gxemul/Makefile Directory Properties: branches/2014Q1/ (props changed) Modified: branches/2014Q1/emulators/gxemul/Makefile ============================================================================== --- branches/2014Q1/emulators/gxemul/Makefile Fri Feb 28 07:59:41 2014 (r346451) +++ branches/2014Q1/emulators/gxemul/Makefile Fri Feb 28 08:09:38 2014 (r346452) @@ -22,6 +22,8 @@ MAN1= gxemul.1 PORTDOCS= * PLIST_FILES= bin/gxemul +USE_GCC= yes + # svgalib installs vga.h, which conflicts with gxemul when building with # a virtual VGA adaptor. CONFLICTS= svgalib-[0-9]* Copied: branches/2014Q1/emulators/gxemul/files/patch-ab (from r346073, head/emulators/gxemul/files/patch-ab) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q1/emulators/gxemul/files/patch-ab Fri Feb 28 08:09:38 2014 (r346452, copy of r346073, head/emulators/gxemul/files/patch-ab) @@ -0,0 +1,11 @@ +--- src/include/refcount_ptr.h 2010-02-14 02:33:54.000000000 -0700 ++++ src/include/refcount_ptr.h 2014-02-24 03:48:14.000000000 -0700 +@@ -28,6 +28,8 @@ + * SUCH DAMAGE. + */ + ++#include ++ + /** + * \brief Base class for reference countable objects. + *