mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
14 lines
481 B
Diff
14 lines
481 B
Diff
--- 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 {
|