summaryrefslogtreecommitdiff
path: root/user/thunderbird/fix-seccomp-bpf.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2018-03-13 01:17:58 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2018-03-13 01:17:58 -0500
commit95a8766521ed143dbf82ec447b7b79743e274797 (patch)
tree813208c7a3f22309e48d9d8a220862886be5b658 /user/thunderbird/fix-seccomp-bpf.patch
parenta987aed29a4003ef075b86cd50c1a0875004f30d (diff)
downloadpackages-95a8766521ed143dbf82ec447b7b79743e274797.tar.gz
packages-95a8766521ed143dbf82ec447b7b79743e274797.tar.bz2
packages-95a8766521ed143dbf82ec447b7b79743e274797.tar.xz
packages-95a8766521ed143dbf82ec447b7b79743e274797.zip
user/thunderbird: new package
Diffstat (limited to 'user/thunderbird/fix-seccomp-bpf.patch')
-rw-r--r--user/thunderbird/fix-seccomp-bpf.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/user/thunderbird/fix-seccomp-bpf.patch b/user/thunderbird/fix-seccomp-bpf.patch
new file mode 100644
index 000000000..844ec7b96
--- /dev/null
+++ b/user/thunderbird/fix-seccomp-bpf.patch
@@ -0,0 +1,14 @@
+--- a/mozilla/security/sandbox/chromium/sandbox/linux/seccomp-bpf/trap.cc.orig 2015-09-23 09:10:08.812740571 +0200
++++ b/mozilla/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 {