summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/iproute2/iproute2
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@intel.com>2016-02-09 19:48:51 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-11 12:27:48 +0000
commit0e62f01559fc9ceeeeb46cc143d34785f17c225c (patch)
treee0a94c866fd48b599e6ff763ebf32f055208e5d7 /meta/recipes-connectivity/iproute2/iproute2
parent216e618a7f48db0fb4827c4ae68445b2137f2b51 (diff)
downloadpoky-0e62f01559fc9ceeeeb46cc143d34785f17c225c.tar.gz
iproute2: update to version 4.4.0
4.3.0 -> 4.4.0 Added iproute2-fix-building-with-musl.patch to fix build with musl. (From OE-Core rev: c8a7fdb2ac37b42a97f666cae6b3f5061a01ad45) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/iproute2/iproute2')
-rw-r--r--meta/recipes-connectivity/iproute2/iproute2/iproute2-fix-building-with-musl.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/iproute2/iproute2/iproute2-fix-building-with-musl.patch b/meta/recipes-connectivity/iproute2/iproute2/iproute2-fix-building-with-musl.patch
new file mode 100644
index 0000000000..c83a243b71
--- /dev/null
+++ b/meta/recipes-connectivity/iproute2/iproute2/iproute2-fix-building-with-musl.patch
@@ -0,0 +1,24 @@
1iproute2: fix building with musl
2
3We need limits.h for PATH_MAX, fixes:
4
5rt_names.c:364:13: error: ‘PATH_MAX’ undeclared (first use in this
6function)
7
8Upstream-Status: Backport
9
10Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
11Signed-off-by: Maxin B. John <maxin.john@intel.com>
12---
13diff --git a/lib/rt_names.c b/lib/rt_names.c
14index f6d17c0..b665d3e 100644
15--- a/lib/rt_names.c
16+++ b/lib/rt_names.c
17@@ -18,6 +18,7 @@
18 #include <sys/time.h>
19 #include <sys/socket.h>
20 #include <dirent.h>
21+#include <limits.h>
22
23 #include <asm/types.h>
24 #include <linux/rtnetlink.h>