summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/iproute2/iproute2/iproute2-fix-building-with-musl.patch
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@intel.com>2016-05-04 11:20:24 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-09 08:03:56 +0100
commit9d3d76a43d27c95aac8d7a840c9c38c686b166ec (patch)
tree5ff4f4ed3a4233b0962412ef78696a268eb5b6bd /meta/recipes-connectivity/iproute2/iproute2/iproute2-fix-building-with-musl.patch
parent1b0628f86aaebcd786f1646a8f6f41de7fb80acc (diff)
downloadopenembedded-core-contrib-9d3d76a43d27c95aac8d7a840c9c38c686b166ec.tar.gz
iproute2: upgrade to version 4.5.0
4.4.0 -> 4.5.0 Refreshed iproute2 musl build fix patch for 4.5.0 Remove backported patch: iproute2-fix-building-with-musl.patch Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-connectivity/iproute2/iproute2/iproute2-fix-building-with-musl.patch')
-rw-r--r--meta/recipes-connectivity/iproute2/iproute2/iproute2-fix-building-with-musl.patch24
1 files changed, 0 insertions, 24 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
deleted file mode 100644
index c83a243b71..0000000000
--- a/meta/recipes-connectivity/iproute2/iproute2/iproute2-fix-building-with-musl.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-iproute2: fix building with musl
-
-We need limits.h for PATH_MAX, fixes:
-
-rt_names.c:364:13: error: ‘PATH_MAX’ undeclared (first use in this
-function)
-
-Upstream-Status: Backport
-
-Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
-Signed-off-by: Maxin B. John <maxin.john@intel.com>
----
-diff --git a/lib/rt_names.c b/lib/rt_names.c
-index f6d17c0..b665d3e 100644
---- a/lib/rt_names.c
-+++ b/lib/rt_names.c
-@@ -18,6 +18,7 @@
- #include <sys/time.h>
- #include <sys/socket.h>
- #include <dirent.h>
-+#include <limits.h>
-
- #include <asm/types.h>
- #include <linux/rtnetlink.h>