From: Gustavo Zacarias Date: Thu, 21 Jan 2016 18:19:48 +0000 (-0300) Subject: iproute2: fix building with musl X-Git-Tag: v4.5.0~91 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a36b4c2ecafa9ec377fd1ed2a47b74df1c27900;p=thirdparty%2Fiproute2.git 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) Signed-off-by: Gustavo Zacarias --- diff --git a/lib/rt_names.c b/lib/rt_names.c index f6d17c0e5..b665d3e92 100644 --- a/lib/rt_names.c +++ b/lib/rt_names.c @@ -18,6 +18,7 @@ #include #include #include +#include #include #include