| Index: source/common/ucnv_bld.cpp
|
| diff --git a/source/common/ucnv_bld.cpp b/source/common/ucnv_bld.cpp
|
| index 078f293ea17c095143e48cd6780a84915b749307..a8c41cc7df1196a5d7ac711ddf5bbf0e86972667 100644
|
| --- a/source/common/ucnv_bld.cpp
|
| +++ b/source/common/ucnv_bld.cpp
|
| @@ -67,11 +67,7 @@ converterData[UCNV_NUMBER_OF_SUPPORTED_CONVERTER_TYPES]={
|
|
|
| &_Latin1Data,
|
| &_UTF8Data, &_UTF16BEData, &_UTF16LEData,
|
| -#if UCONFIG_ONLY_HTML_CONVERSION
|
| - NULL, NULL,
|
| -#else
|
| &_UTF32BEData, &_UTF32LEData,
|
| -#endif
|
| NULL,
|
|
|
| #if UCONFIG_NO_LEGACY_CONVERSION
|
| @@ -105,7 +101,7 @@ converterData[UCNV_NUMBER_OF_SUPPORTED_CONVERTER_TYPES]={
|
|
|
| &_ASCIIData,
|
| #if UCONFIG_ONLY_HTML_CONVERSION
|
| - NULL, NULL, &_UTF16Data, NULL, NULL, NULL,
|
| + NULL, NULL, &_UTF16Data, &_UTF32Data, NULL, NULL,
|
| #else
|
| &_UTF7Data, &_Bocu1Data, &_UTF16Data, &_UTF32Data, &_CESU8Data, &_IMAPData,
|
| #endif
|
| @@ -170,7 +166,6 @@ static struct {
|
| { "utf16oppositeendian", UCNV_UTF16_BigEndian},
|
| { "utf16platformendian", UCNV_UTF16_LittleEndian },
|
| #endif
|
| -#if !UCONFIG_ONLY_HTML_CONVERSION
|
| { "utf32", UCNV_UTF32 },
|
| { "utf32be", UCNV_UTF32_BigEndian },
|
| { "utf32le", UCNV_UTF32_LittleEndian },
|
| @@ -181,7 +176,6 @@ static struct {
|
| { "utf32oppositeendian", UCNV_UTF32_BigEndian },
|
| { "utf32platformendian", UCNV_UTF32_LittleEndian },
|
| #endif
|
| -#endif
|
| #if !UCONFIG_ONLY_HTML_CONVERSION
|
| { "utf7", UCNV_UTF7 },
|
| #endif
|
|
|