From 6d5d6429d5880f9fdf4b4b54c0fb53e44b3927f9 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Tue, 3 Nov 2020 00:56:26 +0000 Subject: devel/icu: update to 68.1 Changes: http://site.icu-project.org/download/68 ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/ Reported by: GitHub (watch releases) --- databases/postgresql12-server/files/patch-icu68 | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 databases/postgresql12-server/files/patch-icu68 (limited to 'databases/postgresql12-server/files/patch-icu68') diff --git a/databases/postgresql12-server/files/patch-icu68 b/databases/postgresql12-server/files/patch-icu68 new file mode 100644 index 000000000000..475bdd8fe52a --- /dev/null +++ b/databases/postgresql12-server/files/patch-icu68 @@ -0,0 +1,17 @@ +Regressed by https://github.com/unicode-org/icu/commit/c3fe7e09d844 + +collationcmds.c:467:51: error: use of undeclared identifier 'TRUE' + uloc_toLanguageTag(localename, buf, sizeof(buf), TRUE, &status); + ^ + +--- src/backend/commands/collationcmds.c.orig 2020-08-10 21:15:53 UTC ++++ src/backend/commands/collationcmds.c +@@ -463,7 +463,7 @@ get_icu_language_tag(const char *localename) + UErrorCode status; + + status = U_ZERO_ERROR; +- uloc_toLanguageTag(localename, buf, sizeof(buf), TRUE, &status); ++ uloc_toLanguageTag(localename, buf, sizeof(buf), true, &status); + if (U_FAILURE(status)) + ereport(ERROR, + (errmsg("could not convert locale name \"%s\" to language tag: %s", -- cgit v1.2.3