Received: by mail.netbsd.org (Postfix, from userid 605) id 5C66B84E30; Tue, 8 Oct 2019 21:16:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D062B84E27 for ; Tue, 8 Oct 2019 21:16:07 +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 BkhFdo9z2_Vd for ; Tue, 8 Oct 2019 21:16:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2EA4384D2A for ; Tue, 8 Oct 2019 21:16:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 28C42FBF4; Tue, 8 Oct 2019 21:16:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1570569367165210" MIME-Version: 1.0 Date: Tue, 8 Oct 2019 21:16:07 +0000 From: "John Klos" Subject: CVS commit: pkgsrc/lang/spidermonkey52/patches To: pkgsrc-changes@NetBSD.org Reply-To: jklos@netbsd.org X-Mailer: log_accum Message-Id: <20191008211607.28C42FBF4@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. --_----------=_1570569367165210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jklos Date: Tue Oct 8 21:16:07 UTC 2019 Modified Files: pkgsrc/lang/spidermonkey52/patches: patch-python_mozbuild_mozbuild_configure_constants.py Log Message: Fix spidermonkey52 fo compile on alpha. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 \ pkgsrc/lang/spidermonkey52/patches/patch-python_mozbuild_mozbuild_configure_constants.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1570569367165210 Content-Disposition: inline Content-Length: 1287 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/spidermonkey52/patches/patch-python_mozbuild_mozbuild_configure_constants.py diff -u pkgsrc/lang/spidermonkey52/patches/patch-python_mozbuild_mozbuild_configure_constants.py:1.1 pkgsrc/lang/spidermonkey52/patches/patch-python_mozbuild_mozbuild_configure_constants.py:1.2 --- pkgsrc/lang/spidermonkey52/patches/patch-python_mozbuild_mozbuild_configure_constants.py:1.1 Fri May 11 19:18:35 2018 +++ pkgsrc/lang/spidermonkey52/patches/patch-python_mozbuild_mozbuild_configure_constants.py Tue Oct 8 21:16:06 2019 @@ -1,4 +1,4 @@ -$NetBSD: patch-python_mozbuild_mozbuild_configure_constants.py,v 1.1 2018/05/11 19:18:35 jperkin Exp $ +$NetBSD: patch-python_mozbuild_mozbuild_configure_constants.py,v 1.2 2019/10/08 21:16:06 jklos Exp $ Support SunOS. @@ -12,7 +12,7 @@ Support SunOS. 'WINNT', ) -@@ -35,6 +36,7 @@ Kernel = EnumString.subclass( +@@ -35,12 +36,13 @@ Kernel = EnumString.subclass( 'Linux', 'NetBSD', 'OpenBSD', @@ -20,6 +20,13 @@ Support SunOS. 'WINNT', ) + CPU_bitness = { + 'aarch64': 64, +- 'Alpha': 32, ++ 'Alpha': 64, + 'arm': 32, + 'hppa': 32, + 'ia64': 64, @@ -97,6 +99,7 @@ kernel_preprocessor_checks = { 'Linux': '__linux__', 'NetBSD': '__NetBSD__', --_----------=_1570569367165210--