aboutsummaryrefslogtreecommitdiff
path: root/extra/firefox/patches/fix-seccomp-bpf.patch
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-01-24 14:24:37 +0300
committerCem Keylan <cem@ckyln.com>2020-01-24 14:24:37 +0300
commit77b5c6911ab1f7c864d5b4847ed84c32d1fb1a45 (patch)
tree5d2cd20380cec7c15ae9904239ecc0c0e779c97c /extra/firefox/patches/fix-seccomp-bpf.patch
parent86c82ca41ffbf3d0bd4ea44aa350ea5387512317 (diff)
downloadrepository-77b5c6911ab1f7c864d5b4847ed84c32d1fb1a45.tar.gz
firefox: remove package
Diffstat (limited to 'extra/firefox/patches/fix-seccomp-bpf.patch')
-rw-r--r--extra/firefox/patches/fix-seccomp-bpf.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/extra/firefox/patches/fix-seccomp-bpf.patch b/extra/firefox/patches/fix-seccomp-bpf.patch
deleted file mode 100644
index da102b46..00000000
--- a/extra/firefox/patches/fix-seccomp-bpf.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/security/sandbox/chromium/sandbox/linux/seccomp-bpf/trap.cc
-+++ b/security/sandbox/chromium/sandbox/linux/seccomp-bpf/trap.cc
-@@ -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 {