aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Hughes <davidhughes205@gmail.com>2021-04-15 08:11:42 -0400
committerDave Hughes <davidhughes205@gmail.com>2021-04-15 08:11:42 -0400
commit9f9c45386ca05c8cd4d2a1368315efb50047c921 (patch)
tree03c4fceb86d1b5042febd4e9b9c85ce4acafe32f
parentsys-process/psmisc: fix patches (diff)
downloadmusl-9f9c45386ca05c8cd4d2a1368315efb50047c921.tar.gz
musl-9f9c45386ca05c8cd4d2a1368315efb50047c921.tar.bz2
musl-9f9c45386ca05c8cd4d2a1368315efb50047c921.zip
sys-process/psmisc: remove old patch
Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Dave Hughes <davidhughes205@gmail.com>
-rw-r--r--sys-process/psmisc/files/psmisc-23.1-include_limits.patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/sys-process/psmisc/files/psmisc-23.1-include_limits.patch b/sys-process/psmisc/files/psmisc-23.1-include_limits.patch
deleted file mode 100644
index 1b474bc8..00000000
--- a/sys-process/psmisc/files/psmisc-23.1-include_limits.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-Author: Breno Leitao <brenohl@br.ibm.com>
-Date: Thu Apr 6 13:59:57 2017 -0300
-
- peekfd: Include headers for ppc64
-
- Currently peekfd fails to build on ppc64le architecture with musl
- because it does not find reference for __WORDSIZE.
-
- This patch just includes reference for this macro if it was not
- previously defined.
-
-Index: psmisc-22.21/src/peekfd.c
-===================================================================
---- psmisc-22.21.orig/src/peekfd.c
-+++ psmisc-22.21/src/peekfd.c
-@@ -37,6 +37,14 @@
-
- #include "i18n.h"
-
-+#if !defined(PATH_MAX)
-+#include <limits.h>
-+#endif
-+
-+#if !defined(__WORDSIZE)
-+#include <bits/reg.h>
-+#endif
-+
- #ifdef I386
- #define REG_ORIG_ACCUM orig_eax
- #define REG_ACCUM eax
-Index: psmisc-22.21/src/pstree.c
-===================================================================
---- psmisc-22.21.orig/src/pstree.c
-+++ psmisc-22.21/src/pstree.c
-@@ -45,6 +45,10 @@
- #include "i18n.h"
- #include "comm.h"
-
-+#if !defined(PATH_MAX)
-+#include <limits.h>
-+#endif
-+
- #ifdef WITH_SELINUX
- #include <selinux/selinux.h>
- #else