diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2017-08-05 11:36:24 +0200 |
---|---|---|
committer | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2017-08-10 00:01:44 +0200 |
commit | 84160165a18e2962df2c013f35cb1f7eee0069cf (patch) | |
tree | 16cd26558e59aab0b6178ad14c9c9aaaaaac578a /package/mcelog/0001-memutil.h-add-missing-include-for-va_list.patch | |
parent | 3ad2d40c65af7a346d79d38ec2999633795c051f (diff) | |
download | buildroot-84160165a18e2962df2c013f35cb1f7eee0069cf.tar.gz buildroot-84160165a18e2962df2c013f35cb1f7eee0069cf.zip |
package/mcelog: bump version to 153
Removed patch applied upstream:
https://git.kernel.org/pub/scm/utils/cpu/mce/mcelog.git/commit/?id=524ed1cd16de5adcb4a5015777d3dfc63afda1fe
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Diffstat (limited to 'package/mcelog/0001-memutil.h-add-missing-include-for-va_list.patch')
-rw-r--r-- | package/mcelog/0001-memutil.h-add-missing-include-for-va_list.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/package/mcelog/0001-memutil.h-add-missing-include-for-va_list.patch b/package/mcelog/0001-memutil.h-add-missing-include-for-va_list.patch deleted file mode 100644 index f9e08be18d..0000000000 --- a/package/mcelog/0001-memutil.h-add-missing-include-for-va_list.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 36aad32283eae5b47a05e3adfa3f5f6a7b1b55c0 Mon Sep 17 00:00:00 2001 -From: Bernd Kuhls <bernd.kuhls@t-online.de> -Date: Sun, 11 Jun 2017 10:02:39 +0200 -Subject: [PATCH] memutil.h: add missing include for va_list - -Fixes compile error with uclibc-ng: - -In file included from mcelog.c:51:0: -memutil.h:4:48: error: unknown type name 'va_list' - int xvasprintf(char **ret, const char *format, va_list ap); - -Patch sent upstream: https://github.com/andikleen/mcelog/pull/54 - -Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> ---- - memutil.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/memutil.h b/memutil.h -index 81028e9..dbed7fa 100644 ---- a/memutil.h -+++ b/memutil.h -@@ -1,4 +1,5 @@ - #include <stdlib.h> -+#include <stdarg.h> - - int xasprintf(char **strp, const char *fmt, ...); - int xvasprintf(char **ret, const char *format, va_list ap); --- -2.11.0 - |