blob: daafceb37b7209baca1b92a4a446c424e5ee79b6 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From af1fdce78bff4343f3c84ea118abdc3c739fc646 Mon Sep 17 00:00:00 2001
Patrick Williamsc0f7c042017-02-23 20:41:17 -06002From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 30 Apr 2016 16:23:56 +0000
4Subject: [PATCH] Fix build when using non-glibc libc implementation on ppc
5
6glibc includes the kernel header into its own header for macros
7musl does not
8
9Upstream-Status: Pending
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
Brad Bishop19323692019-04-05 15:28:33 -040011
Patrick Williamsc0f7c042017-02-23 20:41:17 -060012---
13 ptrace.h | 8 +++++++-
14 1 file changed, 7 insertions(+), 1 deletion(-)
15
16diff --git a/ptrace.h b/ptrace.h
Brad Bishop19323692019-04-05 15:28:33 -040017index 89d4b95..b3f45bb 100644
Patrick Williamsc0f7c042017-02-23 20:41:17 -060018--- a/ptrace.h
19+++ b/ptrace.h
Brad Bishop19323692019-04-05 15:28:33 -040020@@ -30,7 +30,13 @@
Patrick Williamsc0f7c042017-02-23 20:41:17 -060021 # define ptrace_peeksiginfo_args XXX_ptrace_peeksiginfo_args
22 #endif
23
24-#include <linux/ptrace.h>
25+#if defined(POWERPC) && !defined(__GLIBC__)
26+#define pt_regs uapi_pt_regs
27+#endif
28+# include <linux/ptrace.h>
29+#if defined(POWERPC) && !defined(__GLIBC__)
30+# undef pt_regs
31+#endif
32
33 #ifdef HAVE_STRUCT_IA64_FPREG
34 # undef ia64_fpreg