Received: by mail.netbsd.org (Postfix, from userid 605) id 5287884D93; Sun, 28 Jun 2020 11:32:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CCD3784D67 for ; Sun, 28 Jun 2020 11:32:05 +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 EqMRrhnaNn4p for ; Sun, 28 Jun 2020 11:32:05 +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 2774B84D02 for ; Sun, 28 Jun 2020 11:32:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 13D0FFB28; Sun, 28 Jun 2020 11:32:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1593343925211360" MIME-Version: 1.0 Date: Sun, 28 Jun 2020 11:32:05 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/www/seamonkey To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200628113205.13D0FFB28@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. --_----------=_1593343925211360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jun 28 11:32:04 UTC 2020 Modified Files: pkgsrc/www/seamonkey: mozilla-common.mk Log Message: seamonkey: Fix PLIST for aarch64 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/www/seamonkey/mozilla-common.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1593343925211360 Content-Disposition: inline Content-Length: 938 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/seamonkey/mozilla-common.mk diff -u pkgsrc/www/seamonkey/mozilla-common.mk:1.3 pkgsrc/www/seamonkey/mozilla-common.mk:1.4 --- pkgsrc/www/seamonkey/mozilla-common.mk:1.3 Sun Jun 14 15:33:28 2020 +++ pkgsrc/www/seamonkey/mozilla-common.mk Sun Jun 28 11:32:04 2020 @@ -1,4 +1,4 @@ -# $NetBSD: mozilla-common.mk,v 1.3 2020/06/14 15:33:28 nia Exp $ +# $NetBSD: mozilla-common.mk,v 1.4 2020/06/28 11:32:04 nia Exp $ # # common Makefile fragment for mozilla packages based on gecko 2.0. # @@ -121,8 +121,9 @@ PLIST_VARS+= sps vorbis tremor glskia th PLIST.glskia= yes .endif -.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" -PLIST.avx86= yes # see media/libav/README_MOZILLA: only used on x86 +.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" || \ + ${MACHINE_ARCH} == "aarch64" +PLIST.avx86= yes # see media/libav/README_MOZILLA .endif .if ${MACHINE_ARCH} != "sparc64" --_----------=_1593343925211360--