summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/iproute2/iproute2/iproute2-fix-building-with-musl.patch
diff options
context:
space:
mode:
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 @@
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>