From owner-svn-ports-head@FreeBSD.ORG Sun Nov 10 20:29:53 2013 Return-Path: Delivered-To: svn-ports-head@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 F3A40665; Sun, 10 Nov 2013 20:29:52 +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 DBA66201D; Sun, 10 Nov 2013 20:29:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAAKTqV0025119; Sun, 10 Nov 2013 20:29:52 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAAKTqTl025118; Sun, 10 Nov 2013 20:29:52 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201311102029.rAAKTqTl025118@svn.freebsd.org> From: Gerald Pfeifer Date: Sun, 10 Nov 2013 20:29:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333442 - 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-head@freebsd.org X-Mailman-Version: 2.1.14 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: Sun, 10 Nov 2013 20:29:53 -0000 Author: gerald Date: Sun Nov 10 20:29:52 2013 New Revision: 333442 URL: http://svnweb.freebsd.org/changeset/ports/333442 Log: Document USE_GCC=any. Reformat the description a bit and use newer versions of GCC for reference. Modified: head/Mk/bsd.gcc.mk Modified: head/Mk/bsd.gcc.mk ============================================================================== --- head/Mk/bsd.gcc.mk Sun Nov 10 20:27:06 2013 (r333441) +++ head/Mk/bsd.gcc.mk Sun Nov 10 20:29:52 2013 (r333442) @@ -7,20 +7,26 @@ # # To request the use of a current version of GCC, specify USE_GCC=yes in # your port/system configuration. This is the preferred use of USE_GCC. -# It defines a canonical, default version of GCC; the same version of +# It defines a canonical, default version of GCC. The same version of # GCC is also implied by USE_FORTRAN=yes. +# +# USE_GCC=any is similar, except that it also accepts the old GCC 4.2- +# based system compiler in older versions of FreeBSD. # # If your port needs a specific (minimum) version of GCC, you can easily # specify that with a USE_GCC= statement. Unless absolutely necessary # do so by specifying USE_GCC=X.Y+ which requests at least GCC version -# X.Y. To request a specific version omit the trailing + sign. Use of -# a Fortran compiler is declared by the USE_FORTRAN knob, not USE_GCC. +# X.Y. To request a specific version omit the trailing + sign. +# +# Use of a Fortran compiler is declared by the USE_FORTRAN knob, not +# USE_GCC. # # Examples: # USE_GCC= yes # port requires a current version of GCC # # (4.6 as of today, subject to change). -# USE_GCC= 4.2+ # port requires GCC 4.2 or later. -# USE_GCC= 4.7 # port requires GCC 4.7. +# USE_GCC= any # port requires GCC 4.2 or later. +# USE_GCC= 4.8+ # port requires GCC 4.8 or later. +# USE_GCC= 4.8 # port requires GCC 4.8. # # If your port needs a Fortran compiler, please specify that with the # USE_FORTRAN= knob. Here is the list of options for that knob: