summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/systemd-bootchart/files/0001-parse-util-Don-t-use-xlocale.h.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/systemd-bootchart/files/0001-parse-util-Don-t-use-xlocale.h.patch')
-rw-r--r--meta/recipes-devtools/systemd-bootchart/files/0001-parse-util-Don-t-use-xlocale.h.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-devtools/systemd-bootchart/files/0001-parse-util-Don-t-use-xlocale.h.patch b/meta/recipes-devtools/systemd-bootchart/files/0001-parse-util-Don-t-use-xlocale.h.patch
new file mode 100644
index 0000000000..5aa0463ac8
--- /dev/null
+++ b/meta/recipes-devtools/systemd-bootchart/files/0001-parse-util-Don-t-use-xlocale.h.patch
@@ -0,0 +1,32 @@
1From d379126d56d0b6e935b2d97ca71579e6cc54d1bb Mon Sep 17 00:00:00 2001
2From: Jussi Kukkonen <jussi.kukkonen@intel.com>
3Date: Tue, 18 Jul 2017 13:37:27 +0300
4Subject: [PATCH] parse-util: Don't use xlocale.h
5
6glibc 2.26 no longer contains the non-standard xlocale.h
7(http://sourceware.org/glibc/wiki/Release/2.26#Removal_of_.27xlocale.h.27)
8
9This change shouldn't break anything as xlocale.h was a subset of
10locale.h.
11
12Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
13Upstream-Status: Submitted [https://github.com/systemd/systemd-bootchart/pull/35]
14---
15 src/parse-util.c | 1 -
16 1 file changed, 1 deletion(-)
17
18diff --git a/src/parse-util.c b/src/parse-util.c
19index 5635a68..1b2169c 100644
20--- a/src/parse-util.c
21+++ b/src/parse-util.c
22@@ -21,7 +21,6 @@
23 #include <locale.h>
24 #include <stdlib.h>
25 #include <string.h>
26-#include <xlocale.h>
27
28 #include "macro.h"
29 #include "parse-util.h"
30--
312.13.2
32