UINT_MAX usage requires limits.h, so include it.
Signed-off-by: Gustavo Zacarias
---
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
#include
#include
+#include
It's using MIN() now, otherwise it breaks for musl libc.
Signed-off-by: Gustavo Zacarias
---
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/ipaddress.c
@@ -19,6 +19,7 @@
#in
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
---
tc/tc_bpf.c | 1 +
1 file changed, 1 insertion(+)
diff
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
Signed-off-by: Gustavo Zacarias
---
...c-make-build-conditional-on-having-libmnl.patch | 33 ++
package/iproute2/iproute2.hash | 2 +-
package/iproute2/iproute2.mk | 6 +++-
3 files changed, 39 insertions(+), 2 deletions(-)
create
Signed-off-by: Gustavo Zacarias
---
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)
+
TIPCOBJ=bearer.o
Signed-off-by: Gustavo Zacarias
---
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
-Wformat=2
CFLAGS
9161A with an
added GPSI mode and better fabrication process.
Signed-off-by: Gustavo Zacarias
---
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
--- a/drivers/ne