Received: by mail.netbsd.org (Postfix, from userid 605) id E8C1F84D15; Thu, 2 Sep 2021 19:20:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2C5E884D0D for ; Thu, 2 Sep 2021 19:20:09 +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 sXjm3q4uXAGg for ; Thu, 2 Sep 2021 19:20:08 +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 7FC5884CE0 for ; Thu, 2 Sep 2021 19:20:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 776F8FA97; Thu, 2 Sep 2021 19:20:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1630610408276960" MIME-Version: 1.0 Date: Thu, 2 Sep 2021 19:20:08 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/multimedia/x264-devel To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210902192008.776F8FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1630610408276960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Sep 2 19:20:08 UTC 2021 Modified Files: pkgsrc/multimedia/x264-devel: Makefile Log Message: x264-devel: disable asm on darwin/aarch64 To generate a diff of this commit: cvs rdiff -u -r1.78 -r1.79 pkgsrc/multimedia/x264-devel/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1630610408276960 Content-Disposition: inline Content-Length: 893 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/multimedia/x264-devel/Makefile diff -u pkgsrc/multimedia/x264-devel/Makefile:1.78 pkgsrc/multimedia/x264-devel/Makefile:1.79 --- pkgsrc/multimedia/x264-devel/Makefile:1.78 Sun Jun 13 06:31:50 2021 +++ pkgsrc/multimedia/x264-devel/Makefile Thu Sep 2 19:20:08 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.78 2021/06/13 06:31:50 nia Exp $ +# $NetBSD: Makefile,v 1.79 2021/09/02 19:20:08 nia Exp $ DISTNAME= x264-snapshot-20191217-2245 PKGNAME= ${DISTNAME:S/-snapshot-/-devel-/:S/-2245$//} @@ -19,6 +19,7 @@ LICENSE= gnu-gpl-v2 # NetBSD/mips needs ASM disabled because it uses the MSA extension # (requires MIPS64 revision 2) and fails to build. .if ${OPSYS} == "SunOS" || \ + !empty(MACHINE_PLATFORM:MDarwin-*-aarch64) || \ !empty(MACHINE_PLATFORM:MNetBSD-*-i386) || \ !empty(MACHINE_PLATFORM:MNetBSD-*-mips*) CONFIGURE_ARGS+= --disable-asm --_----------=_1630610408276960--