summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/net-tools/net-tools/musl-fixes.patch
blob: f694d594bf808bdd38803762a4f81d5e612c82b6 (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
Adjust headers for non-glibc cases
especially exposed by musl

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Upstream-Status: Pending

Index: net-tools-1.60/lib/inet6_gr.c
===================================================================
--- net-tools-1.60.orig/lib/inet6_gr.c
+++ net-tools-1.60/lib/inet6_gr.c
@@ -23,7 +23,7 @@
 #include <string.h>
 #include <stdio.h>
 #include <unistd.h>
-#ifndef __GLIBC__
+#ifdef HAVE_IPV6_ROUTE_H
 #include <netinet6/ipv6_route.h>	/* glibc doesn't have this */
 #endif
 #include "version.h"
Index: net-tools-1.60/lib/inet6_sr.c
===================================================================
--- net-tools-1.60.orig/lib/inet6_sr.c
+++ net-tools-1.60/lib/inet6_sr.c
@@ -23,10 +23,10 @@
 #include <string.h>
 #include <stdio.h>
 #include <unistd.h>
-#ifdef __GLIBC__
-#include <net/route.h>
-#else
+#ifdef HAVE_IPV6_ROUTE_H
 #include <netinet6/ipv6_route.h>	/* glibc does not have this */
+#else
+#include <net/route.h>
 #endif
 #include "version.h"
 #include "net-support.h"
Index: net-tools-1.60/lib/inet_sr.c
===================================================================
--- net-tools-1.60.orig/lib/inet_sr.c
+++ net-tools-1.60/lib/inet_sr.c
@@ -26,6 +26,7 @@
 #include <string.h>
 #include <stdio.h>
 #include <unistd.h>
+#include <asm-generic/param.h>
 #include "version.h"
 #include "net-support.h"
 #include "pathnames.h"
Index: net-tools-1.60/lib/util-ank.c
===================================================================
--- net-tools-1.60.orig/lib/util-ank.c
+++ net-tools-1.60/lib/util-ank.c
@@ -14,6 +14,7 @@
  * Rani Assaf <rani@magic.metawire.com> 980929:	resolve addresses
  */
 
+#include <limits.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
Index: net-tools-1.60/mii-tool.c
===================================================================
--- net-tools-1.60.orig/mii-tool.c
+++ net-tools-1.60/mii-tool.c
@@ -47,10 +47,6 @@ static char Version[] = "$Id: mii-tool.c
 #include <net/if.h>
 #include <linux/sockios.h>
 
-#ifndef __GLIBC__
-#include <linux/if_arp.h>
-#include <linux/if_ether.h>
-#endif
 #include "mii.h"
 #include "version.h"
 
Index: net-tools-1.60/netstat.c
===================================================================
--- net-tools-1.60.orig/netstat.c
+++ net-tools-1.60/netstat.c
@@ -87,6 +87,7 @@
 #include <dirent.h>
 #include <sys/stat.h>
 #include <sys/types.h>
+#include <asm-generic/param.h>
 
 #include "net-support.h"
 #include "pathnames.h"
Index: net-tools-1.60/slattach.c
===================================================================
--- net-tools-1.60.orig/slattach.c
+++ net-tools-1.60/slattach.c
@@ -44,6 +44,7 @@
 #include <string.h>
 #include <unistd.h>
 #include <getopt.h>
+#include <termios.h>
 #include <linux/if_slip.h>
 
 #if defined(__GLIBC__)