From owner-svn-ports-all@freebsd.org Fri May 27 09:54:48 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ACB00B4B05A; Fri, 27 May 2016 09:54:48 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E1E61A32; Fri, 27 May 2016 09:54:48 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4R9slZK004497; Fri, 27 May 2016 09:54:47 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4R9slS9004496; Fri, 27 May 2016 09:54:47 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201605270954.u4R9slS9004496@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 27 May 2016 09:54:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415931 - 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.22 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, 27 May 2016 09:54:48 -0000 Author: marino Date: Fri May 27 09:54:47 2016 New Revision: 415931 URL: https://svnweb.freebsd.org/changeset/ports/415931 Log: Mk/Uses/ada.mk: Remove ADA_DEFAULT=49 option The lang/gcc-aux port has recently been removed, so the previously legal "49" argument is no longer so. Adjust ada.mk accordingly by removing reference to option 49 and lang/gcc-aux. Modified: head/Mk/Uses/ada.mk Modified: head/Mk/Uses/ada.mk ============================================================================== --- head/Mk/Uses/ada.mk Fri May 27 09:49:26 2016 (r415930) +++ head/Mk/Uses/ada.mk Fri May 27 09:54:47 2016 (r415931) @@ -2,11 +2,10 @@ # # Establish Ada-capable compiler as a build dependency # To change default compiler, define ADA_DEFAULT in make.conf to 5 -# Note that gcc47-aux is being removed soon, so 47 is not a legal default # # Feature: ada # Usage: USES=ada -# Valid ARGS: 49, 5, 6, run +# Valid ARGS: 5, 6, run # # MAINTAINER: marino@FreeBSD.org @@ -16,16 +15,12 @@ _INCLUDE_USES_ADA_MK= yes CC= ada ADAXX= gcc6 # framework default -. if ${ada_ARGS:M49} -ADAXX= gcc -. elif ${ada_ARGS:M5} +. if ${ada_ARGS:M5} ADAXX= gcc5 . elif ${ada_ARGS:M6} ADAXX= gcc6 . elif defined(ADA_DEFAULT) -. if ${ADA_DEFAULT} == 49 -ADAXX= gcc -. elif ${ADA_DEFAULT} == 5 +. if ${ADA_DEFAULT} == 5 ADAXX= gcc5 . endif . endif