diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2017-06-01 22:28:14 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-06-01 22:28:14 +0200 |
commit | 11271540bfe6adafbc133caf6b5b902a816f5f02 (patch) | |
tree | 48df469d4e88c7e6efc0a8f4f8d5a386468ed72b /package/iproute2/0003-tc-add-missing-limits.h-header.patch | |
parent | 24d6c5258ee38c38f0156b057cecd3cfe7ed7b1d (diff) | |
parent | 8e5eef6c323c6a928ccea7279b3d9848419b99d9 (diff) | |
download | buildroot-11271540bfe6adafbc133caf6b5b902a816f5f02.tar.gz buildroot-11271540bfe6adafbc133caf6b5b902a816f5f02.zip |
Merge branch 'next'
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/iproute2/0003-tc-add-missing-limits.h-header.patch')
-rw-r--r-- | package/iproute2/0003-tc-add-missing-limits.h-header.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/package/iproute2/0003-tc-add-missing-limits.h-header.patch b/package/iproute2/0003-tc-add-missing-limits.h-header.patch deleted file mode 100644 index b9b27f31a7..0000000000 --- a/package/iproute2/0003-tc-add-missing-limits.h-header.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 1f4547b0a81db617f4b0d02711d9e39278eb8283 Mon Sep 17 00:00:00 2001 -From: Baruch Siach <baruch@tkos.co.il> -Date: Thu, 22 Dec 2016 20:45:11 +0200 -Subject: [PATCH] tc: add missing limits.h header - -This fixes under musl build issues like: - -f_matchall.c: In function ‘matchall_parse_opt’: -f_matchall.c:48:12: error: ‘LONG_MIN’ undeclared (first use in this function) - if (h == LONG_MIN || h == LONG_MAX) { - ^ -f_matchall.c:48:12: note: each undeclared identifier is reported only once for each function it appears in -f_matchall.c:48:29: error: ‘LONG_MAX’ undeclared (first use in this function) - if (h == LONG_MIN || h == LONG_MAX) { - ^ - -Signed-off-by: Baruch Siach <baruch@tkos.co.il> ---- -Upstream status: posted http://marc.info/?l=linux-netdev&m=148243283002957&w=2 ---- - tc/tc_util.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/tc/tc_util.h b/tc/tc_util.h -index f198a4ad5554..4db26c6d5e25 100644 ---- a/tc/tc_util.h -+++ b/tc/tc_util.h -@@ -2,6 +2,7 @@ - #define _TC_UTIL_H_ 1 - - #define MAX_MSG 16384 -+#include <limits.h> - #include <linux/pkt_sched.h> - #include <linux/pkt_cls.h> - #include <linux/gen_stats.h> --- -2.11.0 - |