blob: f0c49e197650de9fe335c7be2d47596a70056195 [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001From d6b57c1b4eb9a24d9d95342a961c93946539c93b Mon Sep 17 00:00:00 2001
Brad Bishop6e60e8b2018-02-01 10:27:11 -05002From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 24 Jun 2017 22:52:40 -0700
Brad Bishop316dfdd2018-06-25 12:45:53 -04004Subject: [PATCH 3/4] i18n: Drop include <xlocale.h>
Brad Bishop6e60e8b2018-02-01 10:27:11 -05005
6glibc 2.26 drops this header
7
Brad Bishop6e60e8b2018-02-01 10:27:11 -05008Upstream-Status: Pending
Brad Bishop316dfdd2018-06-25 12:45:53 -04009Signed-off-by: Khem Raj <raj.khem@gmail.com>
Brad Bishop6e60e8b2018-02-01 10:27:11 -050010
Brad Bishop316dfdd2018-06-25 12:45:53 -040011---
12 source/i18n/digitlst.cpp | 6 +-----
Brad Bishop6e60e8b2018-02-01 10:27:11 -050013 1 file changed, 1 insertion(+), 5 deletions(-)
14
Brad Bishop316dfdd2018-06-25 12:45:53 -040015diff --git a/source/i18n/digitlst.cpp b/source/i18n/digitlst.cpp
16index 8e86fa7..0bdbb2c 100644
17--- a/i18n/digitlst.cpp
18+++ b/i18n/digitlst.cpp
19@@ -62,11 +62,7 @@
Brad Bishop6e60e8b2018-02-01 10:27:11 -050020 #endif
21
22 #if U_USE_STRTOD_L
Brad Bishop316dfdd2018-06-25 12:45:53 -040023-# if U_HAVE_XLOCALE_H
Brad Bishop6e60e8b2018-02-01 10:27:11 -050024-# include <xlocale.h>
Brad Bishop316dfdd2018-06-25 12:45:53 -040025-# else
26-# include <locale.h>
Brad Bishop6e60e8b2018-02-01 10:27:11 -050027-# endif
28+# include <locale.h>
29 #endif
30
31 // ***************************************************************************
Brad Bishop316dfdd2018-06-25 12:45:53 -040032--
332.14.2
34