diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-09-24 22:07:48 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-09-24 22:07:48 +0200 |
commit | 9218305c96277675f539997d6d3b4462293329df (patch) | |
tree | 6a281c7544488c95cefca3e523a9067b0489bd05 /testing/firefox/fix-seccomp-bpf.patch | |
parent | 06d086c54ea533dd835497251b0913d89fde5f76 (diff) | |
download | aports-9218305c96277675f539997d6d3b4462293329df.tar.bz2 aports-9218305c96277675f539997d6d3b4462293329df.tar.xz |
testing/firefox: upgrade to 41.0
Diffstat (limited to 'testing/firefox/fix-seccomp-bpf.patch')
-rw-r--r-- | testing/firefox/fix-seccomp-bpf.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/firefox/fix-seccomp-bpf.patch b/testing/firefox/fix-seccomp-bpf.patch new file mode 100644 index 0000000000..47cde56c74 --- /dev/null +++ b/testing/firefox/fix-seccomp-bpf.patch @@ -0,0 +1,14 @@ +--- a/security/sandbox/chromium/sandbox/linux/seccomp-bpf/trap.cc.orig 2015-09-23 09:10:08.812740571 +0200 ++++ b/security/sandbox/chromium/sandbox/linux/seccomp-bpf/trap.cc 2015-09-23 09:11:38.404746155 +0200 +@@ -23,6 +23,11 @@ + #include "sandbox/linux/services/android_ucontext.h" + #endif + ++// 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 { |