summaryrefslogtreecommitdiff
path: root/user/firefox-esr/rust-config.patch
diff options
context:
space:
mode:
authorMax Rees <maxcrees@me.com>2020-06-02 15:42:44 -0500
committerMax Rees <maxcrees@me.com>2020-06-03 19:39:48 -0500
commit98a725069b0538ef835c6aed5895425b52db7e0e (patch)
tree3e58543d7cd9fb610e500cc419d7249b4f192828 /user/firefox-esr/rust-config.patch
parentbc1df8faf643506b42ca8545312ab8c566adb68b (diff)
downloadpackages-98a725069b0538ef835c6aed5895425b52db7e0e.tar.gz
packages-98a725069b0538ef835c6aed5895425b52db7e0e.tar.bz2
packages-98a725069b0538ef835c6aed5895425b52db7e0e.tar.xz
packages-98a725069b0538ef835c6aed5895425b52db7e0e.zip
[CVE] user/firefox-esr: bump to 68.9.0 and fix seccomp for time64 (#284)
Also "fix" statx support by pulling upstream patch to replace our membarrier patch Dropped rust-config.patch in the hopes it is no longer needed...
Diffstat (limited to 'user/firefox-esr/rust-config.patch')
-rw-r--r--user/firefox-esr/rust-config.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/user/firefox-esr/rust-config.patch b/user/firefox-esr/rust-config.patch
deleted file mode 100644
index eab72a0e4..000000000
--- a/user/firefox-esr/rust-config.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -urw firefox-68.0-old/build/moz.configure/rust.configure firefox-68.0/build/moz.configure/rust.configure
---- firefox-68.0-old/build/moz.configure/rust.configure 2019-07-07 15:56:29.345963800 +0000
-+++ firefox-68.0/build/moz.configure/rust.configure 2019-07-07 16:19:25.990645334 +0000
-@@ -193,12 +193,16 @@
- ambiguous = set()
- per_raw_os = {}
- for t in out:
-+ if 'fuchsia' in t: continue
- t = split_triplet(t, allow_unknown=True)
- endianness = t.endianness
- if t.cpu.startswith('thumb') and endianness not in ('big', 'little'):
- endianness = 'little'
- key = (t.cpu, endianness, t.os)
- if key in per_os:
-+ # hax to allow Adélie toolchains to work
-+ if 'foxkit' in per_os[key].alias:
-+ continue
- previous = per_os[key]
- per_raw_os[(previous.cpu, previous.endianness,
- previous.raw_os)] = previous