psmisc: remove musl patch

It doesn't apply for musl either (any longer).

Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
This commit is contained in:
Jürgen Buchmüller 2019-01-11 16:39:47 +01:00
parent 896adc1e75
commit b436cbc30b
No known key found for this signature in database
GPG Key ID: 6764EC32352D0647
1 changed files with 0 additions and 24 deletions

View File

@ -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
===================================================================
--- src/peekfd.c.old
+++ src/peekfd.c
@@ -27,7 +27,13 @@
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/syscall.h>
+#if !defined(__GLIBC__)
+#define pt_regs uapi_pt_regs
+#endif
#include <asm/ptrace.h>
+#if !defined(__GLIBC__)
+#undef pt_regs
+#endif
#include <byteswap.h>
#include <endian.h>
#include <sys/user.h>