ports/textproc/icu4c/patches/patch-source_common_putil_cpp

35 lines
1.4 KiB
Text

https://reviews.freebsd.org/D10128
Index: source/common/putil.cpp
--- source/common/putil.cpp.orig
+++ source/common/putil.cpp
@@ -2004,7 +2004,7 @@ remapPlatformDependentCodepage(const char *locale, con
*/
name = "ISO-8859-1";
}
-#elif U_PLATFORM_IS_DARWIN_BASED
+#elif U_PLATFORM_IS_DARWIN_BASED || U_PLATFORM == U_PF_BSD
if (locale == nullptr && *name == 0) {
/*
No locale was specified, and an empty name was passed in.
@@ -2023,11 +2023,6 @@ remapPlatformDependentCodepage(const char *locale, con
*/
name = "UTF-8";
}
-#elif U_PLATFORM == U_PF_BSD
- if (uprv_strcmp(name, "CP949") == 0) {
- /* Remap CP949 to a similar codepage to avoid issues with backslash and won symbol. */
- name = "EUC-KR";
- }
#elif U_PLATFORM == U_PF_HPUX
if (locale != nullptr && uprv_strcmp(locale, "zh_HK") == 0 && uprv_strcmp(name, "big5") == 0) {
/* HP decided to extend big5 as hkbig5 even though it's not compatible :-( */
@@ -2183,7 +2178,7 @@ int_getDefaultCodepage()
nl_langinfo may use the same buffer as setlocale. */
{
const char *codeset = nl_langinfo(U_NL_LANGINFO_CODESET);
-#if U_PLATFORM_IS_DARWIN_BASED || U_PLATFORM_IS_LINUX_BASED
+#if U_PLATFORM_IS_DARWIN_BASED || U_PLATFORM_IS_LINUX_BASED || U_PLATFORM == U_PF_BSD
/*
* On Linux and MacOSX, ensure that default codepage for non C/POSIX locale is UTF-8
* instead of ASCII.