Gentoo Archives: gentoo-commits

From: Dave Hughes <davidhughes205@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/musl:master commit in: sys-process/psmisc/files/
Date: Thu, 15 Apr 2021 12:11:51
Message-Id: 1618488702.9f9c45386ca05c8cd4d2a1368315efb50047c921.xaero@gentoo
1 commit: 9f9c45386ca05c8cd4d2a1368315efb50047c921
2 Author: Dave Hughes <davidhughes205 <AT> gmail <DOT> com>
3 AuthorDate: Thu Apr 15 12:11:42 2021 +0000
4 Commit: Dave Hughes <davidhughes205 <AT> gmail <DOT> com>
5 CommitDate: Thu Apr 15 12:11:42 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=9f9c4538
7
8 sys-process/psmisc: remove old patch
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Dave Hughes <davidhughes205 <AT> gmail.com>
12
13 .../psmisc/files/psmisc-23.1-include_limits.patch | 45 ----------------------
14 1 file changed, 45 deletions(-)
15
16 diff --git a/sys-process/psmisc/files/psmisc-23.1-include_limits.patch b/sys-process/psmisc/files/psmisc-23.1-include_limits.patch
17 deleted file mode 100644
18 index 1b474bc..0000000
19 --- a/sys-process/psmisc/files/psmisc-23.1-include_limits.patch
20 +++ /dev/null
21 @@ -1,45 +0,0 @@
22 -Author: Breno Leitao <brenohl@××××××.com>
23 -Date: Thu Apr 6 13:59:57 2017 -0300
24 -
25 - peekfd: Include headers for ppc64
26 -
27 - Currently peekfd fails to build on ppc64le architecture with musl
28 - because it does not find reference for __WORDSIZE.
29 -
30 - This patch just includes reference for this macro if it was not
31 - previously defined.
32 -
33 -Index: psmisc-22.21/src/peekfd.c
34 -===================================================================
35 ---- psmisc-22.21.orig/src/peekfd.c
36 -+++ psmisc-22.21/src/peekfd.c
37 -@@ -37,6 +37,14 @@
38 -
39 - #include "i18n.h"
40 -
41 -+#if !defined(PATH_MAX)
42 -+#include <limits.h>
43 -+#endif
44 -+
45 -+#if !defined(__WORDSIZE)
46 -+#include <bits/reg.h>
47 -+#endif
48 -+
49 - #ifdef I386
50 - #define REG_ORIG_ACCUM orig_eax
51 - #define REG_ACCUM eax
52 -Index: psmisc-22.21/src/pstree.c
53 -===================================================================
54 ---- psmisc-22.21.orig/src/pstree.c
55 -+++ psmisc-22.21/src/pstree.c
56 -@@ -45,6 +45,10 @@
57 - #include "i18n.h"
58 - #include "comm.h"
59 -
60 -+#if !defined(PATH_MAX)
61 -+#include <limits.h>
62 -+#endif
63 -+
64 - #ifdef WITH_SELINUX
65 - #include <selinux/selinux.h>
66 - #else