From owner-svn-ports-head@freebsd.org Sun Dec 6 21:19:56 2015 Return-Path: Delivered-To: svn-ports-head@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 DE74C9A0A70; Sun, 6 Dec 2015 21:19:56 +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 AC2FE1DF2; Sun, 6 Dec 2015 21:19:56 +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 tB6LJtJA059080; Sun, 6 Dec 2015 21:19:55 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB6LJtS0059079; Sun, 6 Dec 2015 21:19:55 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201512062119.tB6LJtS0059079@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 6 Dec 2015 21:19:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403166 - head/lang/asis/files 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.20 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, 06 Dec 2015 21:19:57 -0000 Author: marino Date: Sun Dec 6 21:19:55 2015 New Revision: 403166 URL: https://svnweb.freebsd.org/changeset/ports/403166 Log: lang/asis: Fix build for gcc6 The UET_Address attribute has been removed for gcc6. It was intended for internal use only, but it wasn't used. Rather than apply this patch for GCC6 only through the EXTRA_PATCHES mechanism, just unconditionally remove the check regardless of gnat used to build it. (It should not make any difference). No bump required. Added: head/lang/asis/files/patch-asis_a4g-mapping.adb (contents, props changed) Added: head/lang/asis/files/patch-asis_a4g-mapping.adb ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/asis/files/patch-asis_a4g-mapping.adb Sun Dec 6 21:19:55 2015 (r403166) @@ -0,0 +1,10 @@ +--- asis/a4g-mapping.adb.orig 2015-05-06 10:56:05 UTC ++++ asis/a4g-mapping.adb +@@ -1933,7 +1933,6 @@ package body A4G.Mapping is + Attribute_Chars = Name_Target_Name or else + Attribute_Chars = Name_To_Address or else + Attribute_Chars = Name_Type_Class or else +- Attribute_Chars = Name_UET_Address or else + Attribute_Chars = Name_Universal_Literal_String or else + Attribute_Chars = Name_Unrestricted_Access or else + Attribute_Chars = Name_Update or else