summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/fts/fts/fts-header-correctness.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2017-06-06 16:59:09 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-06-12 15:08:30 +0100
commitd31bc5c5157acc11e22974459e8107fd5b5ae375 (patch)
tree86563634a202b9faf0550e6c8e831e82bbe24da7 /meta/recipes-core/fts/fts/fts-header-correctness.patch
parentb467a22729bea886d7bde976c9606ac8e4589cde (diff)
downloadpoky-d31bc5c5157acc11e22974459e8107fd5b5ae375.tar.gz
fts: Switch SRC_URI to github
Use the package maintained by voidlinux Drop local patches (From OE-Core rev: d7a38c46753d5c9692d67a923351d9d6b2e80c3b) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/fts/fts/fts-header-correctness.patch')
-rw-r--r--meta/recipes-core/fts/fts/fts-header-correctness.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/meta/recipes-core/fts/fts/fts-header-correctness.patch b/meta/recipes-core/fts/fts/fts-header-correctness.patch
deleted file mode 100644
index c73ddc95d8..0000000000
--- a/meta/recipes-core/fts/fts/fts-header-correctness.patch
+++ /dev/null
@@ -1,25 +0,0 @@
1Included needed headers for compiling with musl
2
3Signed-off-by: Khem Raj <raj.khem@gmail.com>
4Upstream-Status: Inappropriate
5
6--- fts.orig/fts.h
7+++ fts/fts.h
8@@ -38,6 +38,17 @@
9 #ifndef _FTS_H_
10 #define _FTS_H_
11
12+#include <sys/types.h>
13+#include <sys/param.h>
14+#include <sys/stat.h>
15+
16+#include <dirent.h>
17+#include <errno.h>
18+#include <fcntl.h>
19+#include <stdlib.h>
20+#include <string.h>
21+#include <unistd.h>
22+
23 typedef struct {
24 struct _ftsent *fts_cur; /* current node */
25 struct _ftsent *fts_child; /* linked list of children */