diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-10-22 23:30:58 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-10-22 23:30:58 +0000 |
commit | daf63c3be016f8177a14acd13ae0ad75482e18a5 (patch) | |
tree | d09ca20d3629d290aeb86baa3bd4f3751c67a301 /experimental/thunderbird/fix-seccomp-bpf.patch | |
parent | fd4ce488b375774f8a11f81af831ab075405d64e (diff) | |
download | packages-daf63c3be016f8177a14acd13ae0ad75482e18a5.tar.gz packages-daf63c3be016f8177a14acd13ae0ad75482e18a5.tar.bz2 packages-daf63c3be016f8177a14acd13ae0ad75482e18a5.tar.xz packages-daf63c3be016f8177a14acd13ae0ad75482e18a5.zip |
experimental/thunderbird: is servo's issue a musl one or ppc64 one?
Diffstat (limited to 'experimental/thunderbird/fix-seccomp-bpf.patch')
-rw-r--r-- | experimental/thunderbird/fix-seccomp-bpf.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/experimental/thunderbird/fix-seccomp-bpf.patch b/experimental/thunderbird/fix-seccomp-bpf.patch new file mode 100644 index 000000000..47cde56c7 --- /dev/null +++ b/experimental/thunderbird/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 { |