summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/strace/strace/0001-Fix-build-when-using-non-glibc-libc-implementation-o.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/strace/strace/0001-Fix-build-when-using-non-glibc-libc-implementation-o.patch')
-rw-r--r--meta/recipes-devtools/strace/strace/0001-Fix-build-when-using-non-glibc-libc-implementation-o.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-devtools/strace/strace/0001-Fix-build-when-using-non-glibc-libc-implementation-o.patch b/meta/recipes-devtools/strace/strace/0001-Fix-build-when-using-non-glibc-libc-implementation-o.patch
deleted file mode 100644
index fb5f72529f..0000000000
--- a/meta/recipes-devtools/strace/strace/0001-Fix-build-when-using-non-glibc-libc-implementation-o.patch
+++ /dev/null
@@ -1,31 +0,0 @@
1From af1fdce78bff4343f3c84ea118abdc3c739fc646 Mon Sep 17 00:00:00 2001
2From: 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>
11
12---
13 ptrace.h | 8 +++++++-
14 1 file changed, 7 insertions(+), 1 deletion(-)
15
16--- a/ptrace.h
17+++ b/ptrace.h
18@@ -30,7 +30,13 @@
19 # define ptrace_peeksiginfo_args XXX_ptrace_peeksiginfo_args
20 # endif
21
22+#if defined(POWERPC) && !defined(__GLIBC__)
23+#define pt_regs uapi_pt_regs
24+#endif
25 # include <linux/ptrace.h>
26+#if defined(POWERPC) && !defined(__GLIBC__)
27+# undef pt_regs
28+#endif
29
30 # ifdef HAVE_STRUCT_IA64_FPREG
31 # undef ia64_fpreg