aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-connectivity/nfs-utils/nfs-utils/nfs-utils-1.2.3-uclibc-libio.h.patch
blob: 465144a32201a47772950f019039de9831ca43a4 (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
[PATCH] fix build with uClibc

uClibc doesn't have/need libio.h, so don't include it from sockaddr.h

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 support/include/sockaddr.h |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

Upstream-Status: Pending

Index: nfs-utils-1.2.3/support/include/sockaddr.h
===================================================================
--- nfs-utils-1.2.3.orig/support/include/sockaddr.h
+++ nfs-utils-1.2.3/support/include/sockaddr.h
@@ -20,7 +20,10 @@
 #ifndef NFS_UTILS_SOCKADDR_H
 #define NFS_UTILS_SOCKADDR_H
 
+/* uClibc doesn't have/need libio.h */
+#ifndef __UCLIBC__
 #include <libio.h>
+#endif
 #include <stdbool.h>
 #include <sys/socket.h>
 #include <netinet/in.h>