From: Gustavo Zacarias Date: Thu, 21 Jan 2016 18:31:13 +0000 (-0300) Subject: iproute2: add musl build fix patch X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=11d7b8b64aa171823bc4c97e3cce43884d078ecf;p=buildroot.git iproute2: add musl build fix patch Patch status: submitted upstream http://marc.info/?l=linux-netdev&m=145340072013792 Fixes: http://autobuild.buildroot.net/results/d3d/d3d79b55cb19987d5d5c0da9c0f0d25697697c05/ Signed-off-by: Gustavo Zacarias Signed-off-by: Thomas Petazzoni --- diff --git a/package/iproute2/0003-iproute2-fix-building-with-musl.patch b/package/iproute2/0003-iproute2-fix-building-with-musl.patch new file mode 100644 index 0000000000..377bf40bff --- /dev/null +++ b/package/iproute2/0003-iproute2-fix-building-with-musl.patch @@ -0,0 +1,33 @@ +From e445686215f44c95b8b777c4c7efe5318d48505e Mon Sep 17 00:00:00 2001 +From: Gustavo Zacarias +Date: Thu, 21 Jan 2016 15:14:44 -0300 +Subject: [PATCH] iproute2: fix building with musl +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +We need limits.h for PATH_MAX, fixes: + +rt_names.c:364:13: error: ‘PATH_MAX’ undeclared (first use in this +function) + +Signed-off-by: Gustavo Zacarias +--- + lib/rt_names.c | 1 + + 1 file changed, 1 insertion(+) + +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 + #include + #include ++#include + + #include + #include +-- +2.4.10 +