summaryrefslogtreecommitdiff
path: root/sys-process/procps/files/procps-3.3.17-musl-fix.patch
blob: 4402354c21e49776568711627ddcc085ef49a6fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
Temporary stopgap patch (a different solution was used upstream
in the next release, should be in the next after 3.3.17 -- we'll need to
add --disable-w instead).

https://bugs.gentoo.org/794997

From 7bfe2b7c12b33aabca71491360c433d2d3f7bbf4 Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <alex.kanavin@gmail.com>
Date: Wed, 24 Feb 2021 21:14:31 +0000
Subject: [PATCH 1/2] w.c: correct musl builds

No need to redefine UT_ stuff to something that does not exist.

UT_ is already provided in musl but via utmp.h header, so include
it always.

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 w.c | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/w.c b/w.c
index 9d07ac9e..d10639b8 100644
--- a/w.c
+++ b/w.c
@@ -57,9 +57,8 @@
 #include <unistd.h>
 #ifdef HAVE_UTMPX_H
 #	include <utmpx.h>
-#else
-#	include <utmp.h>
 #endif
+#include <utmp.h>
 #include <arpa/inet.h>
 
 static int ignoreuser = 0;	/* for '-u' */
@@ -72,12 +71,6 @@ typedef struct utmpx utmp_t;
 typedef struct utmp utmp_t;
 #endif
 
-#if !defined(UT_HOSTSIZE) || defined(__UT_HOSTSIZE)
-#	define UT_HOSTSIZE __UT_HOSTSIZE
-#	define UT_LINESIZE __UT_LINESIZE
-#	define UT_NAMESIZE __UT_NAMESIZE
-#endif
-
 #ifdef W_SHOWFROM
 # define FROM_STRING "on"
 #else
-- 
GitLab


From 145165aba6c659f3f0f3567a323a3e6170408ea6 Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <alex.kanavin@gmail.com>
Date: Wed, 24 Feb 2021 21:16:14 +0000
Subject: [PATCH 2/2] proc/escape.c: add missing include

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 proc/escape.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/proc/escape.c b/proc/escape.c
index 2e8fb7dd..e1f4612d 100644
--- a/proc/escape.c
+++ b/proc/escape.c
@@ -21,6 +21,7 @@
 #include <sys/types.h>
 #include <string.h>
 #include <limits.h>
+#include <langinfo.h>
 #include "procps.h"
 #include "escape.h"
 #include "readproc.h"
-- 
GitLab