summaryrefslogtreecommitdiff
path: root/build-arm-wasm.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-02-24 21:28:32 +0100
committerMartin Stransky <stransky@redhat.com>2020-02-24 21:28:32 +0100
commit558ad062d9577b143fdc0894ca351b00f0a448ad (patch)
treea29fe32e6d97c724ea7dcdc2d0ac3b5345715581 /build-arm-wasm.patch
parentFixed Bug 1804787 - Some .desktop menu entries unlocalized (diff)
downloadlibrewolf-fedora-ff-558ad062d9577b143fdc0894ca351b00f0a448ad.tar.gz
librewolf-fedora-ff-558ad062d9577b143fdc0894ca351b00f0a448ad.tar.bz2
librewolf-fedora-ff-558ad062d9577b143fdc0894ca351b00f0a448ad.zip
Update pipewire patch for Fedora 32, Added armv7hl fixes by Gabriel Hojda
Diffstat (limited to 'build-arm-wasm.patch')
-rw-r--r--build-arm-wasm.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/build-arm-wasm.patch b/build-arm-wasm.patch
new file mode 100644
index 0000000..bd841ab
--- /dev/null
+++ b/build-arm-wasm.patch
@@ -0,0 +1,21 @@
+diff -up firefox-72.0.2/js/src/wasm/WasmSignalHandlers.cpp.old firefox-72.0.2/js/src/wasm/WasmSignalHandlers.cpp
+--- firefox-72.0.2/js/src/wasm/WasmSignalHandlers.cpp.old 2020-01-17 23:34:41.000000000 +0200
++++ firefox-72.0.2/js/src/wasm/WasmSignalHandlers.cpp 2020-02-02 08:07:54.670341986 +0200
+@@ -249,7 +249,16 @@ using mozilla::DebugOnly;
+ #endif
+
+ #ifdef WASM_EMULATE_ARM_UNALIGNED_FP_ACCESS
+-# include <sys/user.h>
++struct user_vfp {
++ unsigned long long fpregs[32];
++ unsigned long fpscr;
++};
++
++struct user_vfp_exc {
++ unsigned long fpexc;
++ unsigned long fpinst;
++ unsigned long fpinst2;
++};
+ #endif
+
+ #if defined(ANDROID)
bgstack15