From owner-svn-ports-all@FreeBSD.ORG Sun Oct 13 21:23:36 2013 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 ESMTP id 022548FA; Sun, 13 Oct 2013 21:23:36 +0000 (UTC) (envelope-from gerald@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 E2B802835; Sun, 13 Oct 2013 21:23:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9DLNZhk014525; Sun, 13 Oct 2013 21:23:35 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9DLNZxt014524; Sun, 13 Oct 2013 21:23:35 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201310132123.r9DLNZxt014524@svn.freebsd.org> From: Gerald Pfeifer Date: Sun, 13 Oct 2013 21:23:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330254 - head/Mk 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: Sun, 13 Oct 2013 21:23:36 -0000 Author: gerald Date: Sun Oct 13 21:23:35 2013 New Revision: 330254 URL: http://svnweb.freebsd.org/changeset/ports/330254 Log: Add support for USE_GCC=4.9 and USE_GCC=4.9+. Beware, this version of GCC is _not_ anywhere near ready for production use. Use at your own risk, and rather don't use it for regular ports. Submitted by: devzone.my@gmail.com Modified: head/Mk/bsd.gcc.mk Modified: head/Mk/bsd.gcc.mk ============================================================================== --- head/Mk/bsd.gcc.mk Sun Oct 13 21:11:17 2013 (r330253) +++ head/Mk/bsd.gcc.mk Sun Oct 13 21:23:35 2013 (r330254) @@ -42,7 +42,7 @@ GCC_Include_MAINTAINER= gerald@FreeBSD. # All GCC versions supported by the ports framework. Keep them in # ascending order and in sync with the table below. -GCCVERSIONS= 030402 040200 040400 040600 040700 040800 +GCCVERSIONS= 030402 040200 040400 040600 040700 040800 040900 # The first field if the OSVERSION in which it appeared in the base. # The second field is the OSVERSION in which it disappeared from the base. @@ -53,6 +53,7 @@ GCCVERSION_040400= 0 0 4.4 GCCVERSION_040600= 0 0 4.6 GCCVERSION_040700= 0 0 4.7 GCCVERSION_040800= 0 0 4.8 +GCCVERSION_040900= 0 0 4.9 GCC_DEFAULT_VERSION= 4.6 GCC_DEFAULT_V= ${GCC_DEFAULT_VERSION:S/.//}