From owner-svn-ports-all@FreeBSD.ORG Sun Dec 15 23:22:34 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 ESMTPS id A21F7CFE; Sun, 15 Dec 2013 23:22:34 +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 725F81A60; Sun, 15 Dec 2013 23:22:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBFNMYts038913; Sun, 15 Dec 2013 23:22:34 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBFNMYWH038912; Sun, 15 Dec 2013 23:22:34 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201312152322.rBFNMYWH038912@svn.freebsd.org> From: Rene Ladan Date: Sun, 15 Dec 2013 23:22:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336594 - head/Mk/Uses 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.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: Sun, 15 Dec 2013 23:22:34 -0000 Author: rene Date: Sun Dec 15 23:22:33 2013 New Revision: 336594 URL: http://svnweb.freebsd.org/changeset/ports/336594 Log: Mention nestedfct parameter. Perform some language fixes while here. Approved by: portmgr (bapt) Modified: head/Mk/Uses/compiler.mk Modified: head/Mk/Uses/compiler.mk ============================================================================== --- head/Mk/Uses/compiler.mk Sun Dec 15 22:47:22 2013 (r336593) +++ head/Mk/Uses/compiler.mk Sun Dec 15 23:22:33 2013 (r336594) @@ -1,27 +1,28 @@ # $FreeBSD$ # -# Allows to feature determine the compiler used +# Allows to determine the compiler being used # # MAINTAINER: portmgr@FreeBSD.org # # Feature: compiler # Usage: USES=compiler or USES=compiler:ARGS -# Valid ARGS: env (default, implicit) c++11-lib c++11-lang c11 openmp features +# Valid ARGS: env (default, implicit) c++11-lib c++11-lang c11 openmp nestedfct features # -# c++11-lang: The port need a compiler understanding C++11 -# c++11-lib: The port need a compiler understanding C++11 and with a C++11 ready standard library -# c11: The port need a compiler understanding c11 -# openmp: The port need a compiler understanding openmp +# c++11-lang: The port needs a compiler understanding C++11 +# c++11-lib: The port needs a compiler understanding C++11 and with a C++11 ready standard library +# c11: The port needs a compiler understanding C11 +# openmp: The port needs a compiler understanding openmp +# nestedfct: The port needs a compiler understanding nestedfct # features: The port will determine the features supported by the default compiler # # Variable to test after # # COMPILER_TYPE: can be gcc or clang -# ALT_COMPILER_TYPE: can be gcc or clang depending on COMPILER_TYPE and only set if the base system has 2 compiler -# COMPILER_VERSION: 2 first digit of the version: 33 for clang 3.3.*, 46 for gcc 4.6.* -# ALT_COMPILER_VERSION: 2 first digit of the version: 33 for clang 3.3.*, 46 for gcc 4.6.* of the ALT_COMPILER_TYPE +# ALT_COMPILER_TYPE: can be gcc or clang depending on COMPILER_TYPE, only set if the base system has 2 compilers +# COMPILER_VERSION: first 2 digits of the version: 33 for clang 3.3.*, 46 for gcc 4.6.* +# ALT_COMPILER_VERSION: first 2 digits of the version: 33 for clang 3.3.*, 46 for gcc 4.6.* of the ALT_COMPILER_TYPE # -# COMPILER_FEATURES: the list of features supported by the compiler include the standard C++ library. +# COMPILER_FEATURES: the list of features supported by the compiler includes the standard C++ library. # CHOSEN_COMPILER_TYPE: can be gcc or clang (type of compiler chosen by the framework) .if !defined(_INCLUDE_USES_COMPILER_MK)