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