diff options
author | Baruch Siach <baruch@tkos.co.il> | 2018-12-03 14:07:34 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-12-06 22:04:37 +0100 |
commit | 08e411141142136402dcc5664abac13d0e745b15 (patch) | |
tree | c8bf1f6eb5ad46def5648d02cbcb26ef347c57ee /package/keyutils/0003-Add-missing-limits.h-include.patch | |
parent | 67ee7f9eb1bce1542e0a8845d492635151dce36e (diff) | |
download | buildroot-08e411141142136402dcc5664abac13d0e745b15.tar.gz buildroot-08e411141142136402dcc5664abac13d0e745b15.zip |
package/keyutils: bump to version 1.6
Refresh patch 0001.
Drop patch 0003; no longer needed after upstream headers rearrange.
Add license hash.
Cc: Yann E. MORIN <yann.morin.1998@free.fr>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/keyutils/0003-Add-missing-limits.h-include.patch')
-rw-r--r-- | package/keyutils/0003-Add-missing-limits.h-include.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/package/keyutils/0003-Add-missing-limits.h-include.patch b/package/keyutils/0003-Add-missing-limits.h-include.patch deleted file mode 100644 index 45c84398f9..0000000000 --- a/package/keyutils/0003-Add-missing-limits.h-include.patch +++ /dev/null @@ -1,32 +0,0 @@ -From b2c6d3744dca029560d0d5e780f16561f8eeed53 Mon Sep 17 00:00:00 2001 -From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> -Date: Sun, 12 Jul 2015 16:22:14 +0200 -Subject: [PATCH] Add missing <limits.h> include -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -key.dns_resolver.c uses ‘UINT_MAX’ and ‘ULONG_MAX’, but forgets to -include <limits.h>, which causes build failure with certain C -libraries (notably the musl C library). - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> ---- - key.dns_resolver.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/key.dns_resolver.c b/key.dns_resolver.c -index c2a9fe5..d41e219 100644 ---- a/key.dns_resolver.c -+++ b/key.dns_resolver.c -@@ -56,6 +56,7 @@ - #include <stdlib.h> - #include <unistd.h> - #include <time.h> -+#include <limits.h> - - static const char *DNS_PARSE_VERSION = "1.0"; - static const char prog[] = "key.dns_resolver"; --- -2.4.5 - |