diff options
Diffstat (limited to 'system/psmisc/musl_ptregs.patch')
-rw-r--r-- | system/psmisc/musl_ptregs.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/system/psmisc/musl_ptregs.patch b/system/psmisc/musl_ptregs.patch deleted file mode 100644 index 280181a58..000000000 --- a/system/psmisc/musl_ptregs.patch +++ /dev/null @@ -1,24 +0,0 @@ -Author: Breno Leitao <brenohl@br.ibm.com> -Date: Thu Apr 6 14:03:00 2017 -0300 - - peekfd: Avoid pt_regs clash - -Index: psmisc-22.21/src/peekfd.c -=================================================================== ---- a/src/peekfd.c.old -+++ b/src/peekfd.c -@@ -27,7 +27,13 @@ - #include <sys/types.h> - #include <sys/wait.h> - #include <sys/syscall.h> -+#ifdef __PPC__ -+#define pt_regs uapi_pt_regs -+#endif - #include <asm/ptrace.h> -+#ifdef __PPC__ -+#undef pt_regs -+#endif - #include <byteswap.h> - #include <endian.h> - #include <sys/user.h> - |