diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2022-02-17 22:44:25 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2022-02-18 12:35:49 +0100 |
commit | 7b7ed248c435f45acae2e0b5a9489098df98e6af (patch) | |
tree | 623e73d0e4bc5911c5179f95a4ad1df7265686b8 /external | |
parent | f761baac91f97057862b2782b95c301f67dfeb8b (diff) |
boost: use utf-8 encoding for unknown locales.
More exotic locales like es-419 cannot be parsed by boost, so we
fall-back to the default encoding. This avoids an exception:
invalid_charset_error of the form:
"Invalid or unsupported charset:us-ascii or UTF-8"
for this case.
Change-Id: I6796dd893ec774b221956ea9febbcc19495d47b5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130102
Tested-by: Jenkins
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'external')
-rw-r--r-- | external/boost/UnpackedTarball_boost.mk | 1 | ||||
-rw-r--r-- | external/boost/boost.fallback.encoding.patch | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/external/boost/UnpackedTarball_boost.mk b/external/boost/UnpackedTarball_boost.mk index 5f0e9066a839..9e6a12bc4116 100644 --- a/external/boost/UnpackedTarball_boost.mk +++ b/external/boost/UnpackedTarball_boost.mk @@ -17,6 +17,7 @@ boost_patches += boost.utility.Wundef.warnings.patch boost_patches += boost.noiconv.patch boost_patches += boost.between.warning.patch +boost_patches += boost.fallback.encoding.patch boost_patches += rtti.patch.0 diff --git a/external/boost/boost.fallback.encoding.patch b/external/boost/boost.fallback.encoding.patch new file mode 100644 index 000000000000..51ac7fc72308 --- /dev/null +++ b/external/boost/boost.fallback.encoding.patch @@ -0,0 +1,13 @@ +--- foo/misc/boost.orig/libs/locale/src/util/locale_data.cpp.new 2022-02-17 22:41:27.730549039 +0000 ++++ foo/misc/boost/libs/locale/src/util/locale_data.cpp +@@ -18,8 +18,8 @@ + language = "C"; + country.clear(); + variant.clear(); +- encoding = "us-ascii"; +- utf8=false; ++ encoding = "UTF-8"; ++ utf8=true; + parse_from_lang(locale_name); + } + |