aboutsummaryrefslogtreecommitdiffstats
path: root/community/firefox-esr/fix-seccomp-bpf.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2016-03-31 09:57:22 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2016-03-31 12:48:15 +0000
commit367991275b8f37b8bdd024eceddbb4c2bb981f76 (patch)
tree23666c013fd8a9298bda2db769ebe3192f46aa87 /community/firefox-esr/fix-seccomp-bpf.patch
parent4c9e27a54c4f400e46645cb768b7743d2e29f9b1 (diff)
downloadaports-367991275b8f37b8bdd024eceddbb4c2bb981f76.tar.bz2
aports-367991275b8f37b8bdd024eceddbb4c2bb981f76.tar.xz
community/firefox-esr: upgrade to 45.0.1
Diffstat (limited to 'community/firefox-esr/fix-seccomp-bpf.patch')
-rw-r--r--community/firefox-esr/fix-seccomp-bpf.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/community/firefox-esr/fix-seccomp-bpf.patch b/community/firefox-esr/fix-seccomp-bpf.patch
new file mode 100644
index 0000000000..47cde56c74
--- /dev/null
+++ b/community/firefox-esr/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 {