Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id E73DD1A921F for ; Thu, 10 Mar 2022 16:40:32 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 3055084CEF; Thu, 10 Mar 2022 16:40:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6395684CEF for ; Thu, 10 Mar 2022 16:40:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id kfQXkYgM19-Z for ; Thu, 10 Mar 2022 16:40:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A494684D96 for ; Thu, 10 Mar 2022 16:40:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 989A9FB24; Thu, 10 Mar 2022 16:40:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1646930430169260" MIME-Version: 1.0 Date: Thu, 10 Mar 2022 16:40:30 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/lang To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220310164030.989A9FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1646930430169260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Mar 10 16:40:30 UTC 2022 Modified Files: pkgsrc/lang/gcc-aux: Makefile pkgsrc/lang/gcc5-aux: Makefile Log Message: gcc*-aux: disable hardening for ada compilers To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 pkgsrc/lang/gcc-aux/Makefile cvs rdiff -u -r1.15 -r1.16 pkgsrc/lang/gcc5-aux/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1646930430169260 Content-Disposition: inline Content-Length: 1349 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/gcc-aux/Makefile diff -u pkgsrc/lang/gcc-aux/Makefile:1.38 pkgsrc/lang/gcc-aux/Makefile:1.39 --- pkgsrc/lang/gcc-aux/Makefile:1.38 Mon May 24 19:52:30 2021 +++ pkgsrc/lang/gcc-aux/Makefile Thu Mar 10 16:40:30 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2021/05/24 19:52:30 wiz Exp $ +# $NetBSD: Makefile,v 1.39 2022/03/10 16:40:30 nia Exp $ PKGNAME= gcc-aux-${SNAPSHOT} PKGREVISION= 6 @@ -16,6 +16,9 @@ LANGS= c ada c++ USE_TOOLS+= gmake sed:run perl makeinfo bzip2 patch pod2man tar APPLY_DIFFS= core ada cxx +RELRO_SUPPORTED= no +MKPIE_SUPPORTED= no + .include "Makefile.version" .include "Makefile.testsuite" .include "../../mk/bsd.prefs.mk" Index: pkgsrc/lang/gcc5-aux/Makefile diff -u pkgsrc/lang/gcc5-aux/Makefile:1.15 pkgsrc/lang/gcc5-aux/Makefile:1.16 --- pkgsrc/lang/gcc5-aux/Makefile:1.15 Sat Nov 6 09:33:37 2021 +++ pkgsrc/lang/gcc5-aux/Makefile Thu Mar 10 16:40:30 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2021/11/06 09:33:37 nia Exp $ +# $NetBSD: Makefile,v 1.16 2022/03/10 16:40:30 nia Exp $ PKGNAME= gcc5-aux-${SNAPSHOT} PKGREVISION= ${MAIN_PR} @@ -16,6 +16,7 @@ LANGS= c ada c++ USE_TOOLS+= gmake sed:run perl makeinfo bzip2 patch pod2man tar APPLY_DIFFS= core ada cxx +MKPIE_SUPPORTED= no RELRO_SUPPORTED= no NOT_PAX_MPROTECT_SAFE+= gcc5-aux/bin/gnatmake --_----------=_1646930430169260--