Received: by mail.netbsd.org (Postfix, from userid 605) id D28E984D96; Thu, 19 Jan 2023 19:11:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1080084D8D for ; Thu, 19 Jan 2023 19:11:27 +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 UMmyiS29In0Q for ; Thu, 19 Jan 2023 19:11:26 +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 6292C84CBC for ; Thu, 19 Jan 2023 19:11:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 55AA5FA90; Thu, 19 Jan 2023 19:11:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167415548686680" MIME-Version: 1.0 Date: Thu, 19 Jan 2023 19:11:26 +0000 From: "Nikita" Subject: CVS commit: pkgsrc/lang/zig To: pkgsrc-changes@NetBSD.org Reply-To: nikita@netbsd.org X-Mailer: log_accum Message-Id: <20230119191126.55AA5FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167415548686680 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nikita Date: Thu Jan 19 19:11:26 UTC 2023 Modified Files: pkgsrc/lang/zig: Makefile Log Message: zig: fix issues with generating package. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/lang/zig/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167415548686680 Content-Disposition: inline Content-Length: 845 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/zig/Makefile diff -u pkgsrc/lang/zig/Makefile:1.21 pkgsrc/lang/zig/Makefile:1.22 --- pkgsrc/lang/zig/Makefile:1.21 Thu Jan 19 12:32:18 2023 +++ pkgsrc/lang/zig/Makefile Thu Jan 19 19:11:26 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2023/01/19 12:32:18 adam Exp $ +# $NetBSD: Makefile,v 1.22 2023/01/19 19:11:26 nikita Exp $ DISTNAME= zig-0.10.1 CATEGORIES= lang @@ -20,6 +20,11 @@ CMAKE_ARGS+= -DDESTDIR=${DESTDIR} CHECK_PORTABILITY_SKIP+= ci/azure/macos_script BUILDLINK_TRANSFORM+= rm:-Werror +# \todo: There is currently an issue building this as a PIE +MKPIE_SUPPORTED= no +# RELRO checks fail for this package at the moment +RELRO_SUPPORTED= no + .include "../../devel/lld/buildlink3.mk" .include "../../lang/clang/buildlink3.mk" .include "../../lang/llvm/buildlink3.mk" --_----------=_167415548686680--