python-texttable: update to 1.3.1
[void-packages.git] / srcpkgs / icecat / patches / fix-seccomp-bpf.patch
blobed94fc39ed0908d09ee10b2184623ea570587a9e
1 --- security/sandbox/chromium/sandbox/linux/seccomp-bpf/trap.cc.orig 2015-09-23 09:10:08.812740571 +0200
2 +++ security/sandbox/chromium/sandbox/linux/seccomp-bpf/trap.cc 2015-09-23 09:11:38.404746155 +0200
3 @@ -23,6 +23,11 @@
4 #include "sandbox/linux/services/android_ucontext.h"
5 #endif
7 +// musl libc defines siginfo_t __si_fields instead of _sifields
8 +#if defined(OS_LINUX) && !defined(__GLIBC__)
9 +#define _sifields __si_fields
10 +#endif
12 namespace {
14 struct arch_sigsys {