blob: bf3a645bc632bf363a2758bfe6af984a86e487f7 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From dbc88349b9eed4268db951df2c3a8387f75a32e7 Mon Sep 17 00:00:00 2001
Brad Bishopd7bf8c12018-02-25 22:55:05 -05002From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Tue, 15 Aug 2017 17:24:06 +0800
4Subject: [PATCH 4/7] Disable the test to convert euc-jp
5
6Remove the test "Test against HP-UX 11.11 bug:
7No converter from EUC-JP to UTF-8 is provided"
8since we don't support HP-UX and if the euc-jp is not
9installed on the host, the dependence will be built without
10iconv support and will cause guild-native building fail.
11
12Upstream-Status: Inappropriate [OE specific]
13
14Signed-off-by: Roy Li <rongqing.li@windriver.com>
15
16Rebase to 0.170
17Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
18---
19 m4/iconv.m4 | 2 ++
20 1 file changed, 2 insertions(+)
21
22diff --git a/m4/iconv.m4 b/m4/iconv.m4
23index a503646..299f1eb 100644
24--- a/m4/iconv.m4
25+++ b/m4/iconv.m4
26@@ -159,6 +159,7 @@ int main ()
27 }
28 }
29 #endif
30+#if 0
31 /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is
32 provided. */
33 if (/* Try standardized names. */
34@@ -170,6 +171,7 @@ int main ()
35 /* Try HP-UX names. */
36 && iconv_open ("utf8", "eucJP") == (iconv_t)(-1))
37 result |= 16;
38+#endif
39 return result;
40 }]])],
41 [am_cv_func_iconv_works=yes],
42--
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800432.7.4
Brad Bishopd7bf8c12018-02-25 22:55:05 -050044