diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2020-03-01 23:55:34 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-03-02 01:39:20 -0300 |
commit | b95a02111cbc18c810d706c9c522af20674d1f23 (patch) | |
tree | 6992bbad7e41f6e20588c13406aa02933e2521d9 /community/firefox/fix-seccomp-bpf.patch | |
parent | de46d6ac7a77db3185628df176d9cef27d1b76ad (diff) | |
download | aports-b95a02111cbc18c810d706c9c522af20674d1f23.tar.bz2 aports-b95a02111cbc18c810d706c9c522af20674d1f23.tar.xz |
community/firefox: move from testing
Since we support community for stable releases this would also mean
that we'll have to bump nss, nspr and firefox in stable releases,
but I think this should be fine for the 6 months of support we offer.
Diffstat (limited to 'community/firefox/fix-seccomp-bpf.patch')
-rw-r--r-- | community/firefox/fix-seccomp-bpf.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/community/firefox/fix-seccomp-bpf.patch b/community/firefox/fix-seccomp-bpf.patch new file mode 100644 index 0000000000..de7bd175ee --- /dev/null +++ b/community/firefox/fix-seccomp-bpf.patch @@ -0,0 +1,14 @@ +--- a/security/sandbox/chromium/sandbox/linux/seccomp-bpf/trap.cc 2018-12-14 08:53:46.083976137 +0000 ++++ b/security/sandbox/chromium/sandbox/linux/seccomp-bpf/trap.cc 2018-12-14 08:51:22.084596411 +0000 +@@ -25,6 +25,11 @@ + #include "sandbox/linux/system_headers/linux_seccomp.h" + #include "sandbox/linux/system_headers/linux_signal.h" + ++// musl libc defines siginfo_t __si_fields instead of _sifields ++#if defined(OS_LINUX) && !defined(__GLIBC__) ++#define _sifields __si_fields ++#endif ++ + namespace { + + struct arch_sigsys { |