pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/www/firefox firefox: fix 64-bit ARM build
details: https://anonhg.NetBSD.org/pkgsrc/rev/819680f97d17
branches: trunk
changeset: 454717:819680f97d17
user: bsiegert <bsiegert%pkgsrc.org@localhost>
date: Tue Jun 15 13:54:20 2021 +0000
description:
firefox: fix 64-bit ARM build
The code in question has changed in the repo since, so the patch can probably
be removed in the next major update.
diffstat:
www/firefox/Makefile | 4 +-
www/firefox/distinfo | 3 +-
www/firefox/patches/patch-js_src_jit_arm64_Architecture-arm64.h | 15 ++++++++++
3 files changed, 19 insertions(+), 3 deletions(-)
diffs (54 lines):
diff -r d434aba2774e -r 819680f97d17 www/firefox/Makefile
--- a/www/firefox/Makefile Tue Jun 15 13:54:14 2021 +0000
+++ b/www/firefox/Makefile Tue Jun 15 13:54:20 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.480 2021/05/24 19:55:14 wiz Exp $
+# $NetBSD: Makefile,v 1.481 2021/06/15 13:54:20 bsiegert Exp $
FIREFOX_VER= ${MOZ_BRANCH}${MOZ_BRANCH_MINOR}
MOZ_BRANCH= 88.0
@@ -6,7 +6,7 @@
DISTNAME= firefox-${FIREFOX_VER}.source
PKGNAME= ${DISTNAME:S/.source//:S/b/beta/:S/esr//}
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= www
MASTER_SITES+= ${MASTER_SITE_MOZILLA:=firefox/releases/${FIREFOX_VER}/source/}
EXTRACT_SUFX= .tar.xz
diff -r d434aba2774e -r 819680f97d17 www/firefox/distinfo
--- a/www/firefox/distinfo Tue Jun 15 13:54:14 2021 +0000
+++ b/www/firefox/distinfo Tue Jun 15 13:54:20 2021 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.436 2021/05/12 13:31:44 ryoon Exp $
+$NetBSD: distinfo,v 1.437 2021/06/15 13:54:20 bsiegert Exp $
SHA1 (firefox-88.0.1.source.tar.xz) = 4cce4f21eda3fe9982e18358507890c409744549
RMD160 (firefox-88.0.1.source.tar.xz) = a6602d8717088fccdd7b9a808325643a58252fd2
@@ -24,6 +24,7 @@
SHA1 (patch-ipc_glue_GeckoChildProcessHost.cpp) = 260c29bacd8bf265951b7a412f850bf2b292c836
SHA1 (patch-js_public_ErrorReport.h) = 6b96a09acb9d7ee2a85539d827ba46e7a1a062e8
SHA1 (patch-js_src_jit_ProcessExecutableMemory.cpp) = fad103cc698f9828ad58f742231984ec2bc27605
+SHA1 (patch-js_src_jit_arm64_Architecture-arm64.h) = 7b83b343f80a572c96298ca56294643370cbe704
SHA1 (patch-js_src_jit_arm64_vixl_MozCpu-vixl.cpp) = fdc522e3fb626b1b8a2ebf19ad60bfc25dfa4183
SHA1 (patch-js_src_jsfriendapi.h) = b5cb687dbbda314fe0f16521c1c042c105c4bbe4
SHA1 (patch-js_src_util_NativeStack.cpp) = a0a16d8d8d78d3cc3f4d2a508586f1a7821f7dba
diff -r d434aba2774e -r 819680f97d17 www/firefox/patches/patch-js_src_jit_arm64_Architecture-arm64.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/www/firefox/patches/patch-js_src_jit_arm64_Architecture-arm64.h Tue Jun 15 13:54:20 2021 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-js_src_jit_arm64_Architecture-arm64.h,v 1.1 2021/06/15 13:54:20 bsiegert Exp $
+
+Fix build on aarch64; MOZ_CRASH cannot be in a constexpr function.
+
+--- js/src/jit/arm64/Architecture-arm64.h.orig 2021-05-04 18:59:04.000000000 +0000
++++ js/src/jit/arm64/Architecture-arm64.h
+@@ -580,7 +580,7 @@ struct FloatRegister {
+ MOZ_ASSERT(kind_ == FloatRegisters::Simd128);
+ return 16;
+ #else
+- MOZ_CRASH("No SIMD support");
++ return 16;
+ #endif
+ }
+
Home |
Main Index |
Thread Index |
Old Index