Received: by mail.netbsd.org (Postfix, from userid 605) id 9F03F84EB6; Wed, 24 Jun 2020 10:41:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 281FF84EB4 for ; Wed, 24 Jun 2020 10:41:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id NPN6Ghluo1ou for ; Wed, 24 Jun 2020 10:41:49 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 86A7884DAC for ; Wed, 24 Jun 2020 10:41:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 79645FB28; Wed, 24 Jun 2020 10:41:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1592995309195670" MIME-Version: 1.0 Date: Wed, 24 Jun 2020 10:41:49 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/lang/LuaJIT2 To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200624104149.79645FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1592995309195670 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Jun 24 10:41:49 UTC 2020 Modified Files: pkgsrc/lang/LuaJIT2: Makefile Log Message: LuaJIT2: sprinkle ONLY_FOR_PLATFORM To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/lang/LuaJIT2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1592995309195670 Content-Disposition: inline Content-Length: 823 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/LuaJIT2/Makefile diff -u pkgsrc/lang/LuaJIT2/Makefile:1.13 pkgsrc/lang/LuaJIT2/Makefile:1.14 --- pkgsrc/lang/LuaJIT2/Makefile:1.13 Sun Jan 26 17:31:26 2020 +++ pkgsrc/lang/LuaJIT2/Makefile Wed Jun 24 10:41:49 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2020/01/26 17:31:26 rillig Exp $ +# $NetBSD: Makefile,v 1.14 2020/06/24 10:41:49 nia Exp $ # DISTNAME= LuaJIT-2.0.5 @@ -14,6 +14,14 @@ LICENSE= mit USE_TOOLS+= gmake +# LuaJIT 2.1.0 will support mips64 and aarch64. +ONLY_FOR_PLATFORM+= *-*-*arm* +ONLY_FOR_PLATFORM+= *-*-i386 +ONLY_FOR_PLATFORM+= *-*-mipseb +ONLY_FOR_PLATFORM+= *-*-mipsel +ONLY_FOR_PLATFORM+= *-*-powerpc +ONLY_FOR_PLATFORM+= *-*-x86_64 + NOT_PAX_MPROTECT_SAFE+= bin/luajit # Address pkg/47587 lua not linked to pthread causes issues with modules --_----------=_1592995309195670--