[PATCH iproute2] ss: fix build with musl libc

2016-08-19 Thread Gustavo Zacarias
UINT_MAX usage requires limits.h, so include it. Signed-off-by: Gustavo Zacarias <gust...@zacarias.com.ar> --- misc/ss.c | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/ss.c b/misc/ss.c index e758f57..3b268d9 100644 --- a/misc/ss.c +++ b/misc/ss.c @@ -26,6 +26,7 @@ #include #i

[PATCH iproute2] ipaddress: needs to include

2016-05-19 Thread Gustavo Zacarias
It's using MIN() now, otherwise it breaks for musl libc. Signed-off-by: Gustavo Zacarias <gust...@zacarias.com.ar> --- ip/ipaddress.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ip/ipaddress.c b/ip/ipaddress.c index 0692fba..df363b0 100644 --- a/ip/ipaddress.c +++ b/ip/ipadd

[PATCH] iproute2: tc_bpf.c: fix building with musl libc

2016-04-08 Thread Gustavo Zacarias
We need limits.h for PATH_MAX, fixes: tc_bpf.c: In function ‘bpf_map_selfcheck_pinned’: tc_bpf.c:222:12: error: ‘PATH_MAX’ undeclared (first use in this function) char file[PATH_MAX], buff[4096]; Signed-off-by: Gustavo Zacarias <gust...@zacarias.com.ar> --- tc/tc_bpf.c | 1 + 1 file c

[PATCH] iproute2: fix building with musl

2016-01-21 Thread Gustavo Zacarias
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 <gust...@zacarias.com.ar> --- lib/rt_names.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/rt_names.c b/lib/rt_names.c index f

[PATCH iproute2] tipc: make build conditional on having libmnl

2015-06-27 Thread Gustavo Zacarias
Signed-off-by: Gustavo Zacarias gust...@zacarias.com.ar --- Makefile | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 67176be..8153445 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,11 @@ WFLAGS += -Wmissing-declarations -Wold-style-definition

[PATCH] iproute2: bump to version 4.1.0

2015-06-27 Thread Gustavo Zacarias
Signed-off-by: Gustavo Zacarias gust...@zacarias.com.ar --- ...c-make-build-conditional-on-having-libmnl.patch | 33 ++ package/iproute2/iproute2.hash | 2 +- package/iproute2/iproute2.mk | 6 +++- 3 files changed, 39 insertions

[PATCHv2 iproute2] tipc: make build conditional on having libmnl

2015-06-27 Thread Gustavo Zacarias
Signed-off-by: Gustavo Zacarias gust...@zacarias.com.ar --- tipc/Makefile | 5 + 1 file changed, 5 insertions(+) diff --git a/tipc/Makefile b/tipc/Makefile index 4bda8c5..b3ef9b9 100644 --- a/tipc/Makefile +++ b/tipc/Makefile @@ -1,3 +1,6 @@ +include ../Config +ifeq ($(HAVE_MNL),y

[PATCH net-next] net: phy: davicom: add IDs for DM9161B and C variants

2015-06-10 Thread Gustavo Zacarias
with an added GPSI mode and better fabrication process. Signed-off-by: Gustavo Zacarias gust...@zacarias.com.ar --- drivers/net/phy/davicom.c | 13 + 1 file changed, 13 insertions(+) diff --git a/drivers/net/phy/davicom.c b/drivers/net/phy/davicom.c index 0d16c7d..2a32870 100644