mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
Meta+LibUnicode+LibJS: Upgrade to ICU 76.1
This updates our local ICU overlay port to use ICU 76.1. This includes Unicode 16 and CLDR 46. Upstream vcpkg is not able to supply versions past 74 yet due to various dependency issues, but we are able to use this version ourselves. The overlay port now includes a patch to revert ICU's dependence on autoconf 2.72 for now, as this version is not yet available on all systems. All of the test changes were cross-referenced with Firefox to ensure correctness.
This commit is contained in:
@@ -15,7 +15,7 @@ namespace Unicode::IDNA {
|
||||
// https://www.unicode.org/reports/tr46/#ToASCII
|
||||
ErrorOr<String> to_ascii(Utf8View domain_name, ToAsciiOptions const& options)
|
||||
{
|
||||
u32 icu_options = UIDNA_DEFAULT;
|
||||
u32 icu_options = 0;
|
||||
|
||||
if (options.check_bidi == CheckBidi::Yes)
|
||||
icu_options |= UIDNA_CHECK_BIDI;
|
||||
|
||||
Reference in New Issue
Block a user