aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/libcap/libcap2/fix-uclibc-build.patch
blob: d42736eb1b49259f2ee5bc117a91f1d28406ec4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Index: libcap-2.20/libcap/cap_file.c
===================================================================
--- libcap-2.20.orig/libcap/cap_file.c
+++ libcap-2.20/libcap/cap_file.c
@@ -5,7 +5,11 @@
  */
 
 #include <sys/types.h>
+#ifdef __UCLIBC__
+#include <attr/xattr.h>
+#else
 #include <sys/xattr.h>
+#endif
 #include <byteswap.h>
 #include <sys/stat.h>
 #include <unistd.h>