aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/fts/fts/stdint.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2015-12-15 21:24:16 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-22 23:42:45 +0000
commit387f84899cc93c06f3e29991c2fc6c1157bddd81 (patch)
tree64e1a0a115529cd93a55c5c27fc8328c6956d61b /meta/recipes-core/fts/fts/stdint.patch
parent27459f5e4a9b86b0cd751f6ec3b92071e4316cc0 (diff)
downloadopenembedded-core-contrib-387f84899cc93c06f3e29991c2fc6c1157bddd81.tar.gz
fts: Add recipe
fts is not implemented in musl but many packages depend on it glibc implements it even though posix does not requir it to do so. So provide an alternative provider for fts Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-core/fts/fts/stdint.patch')
-rw-r--r--meta/recipes-core/fts/fts/stdint.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/recipes-core/fts/fts/stdint.patch b/meta/recipes-core/fts/fts/stdint.patch
new file mode 100644
index 0000000000..89e6097fcb
--- /dev/null
+++ b/meta/recipes-core/fts/fts/stdint.patch
@@ -0,0 +1,15 @@
+Include stdint.h for u_* typedefs
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+Upstream-Status: Inappropriate
+
+--- ./fts.c.orig
++++ ./fts.c
+@@ -46,6 +46,7 @@
+ #include <errno.h>
+ #include <fcntl.h>
+ #include <fts.h>
++#include <stdint.h>
+ #include <stdlib.h>
+ #include <string.h>
+ #include <unistd.h>