summaryrefslogtreecommitdiff
path: root/x11-fonts/fontconfig/files/patch-src_fclang.c
diff options
context:
space:
mode:
Diffstat (limited to 'x11-fonts/fontconfig/files/patch-src_fclang.c')
-rw-r--r--x11-fonts/fontconfig/files/patch-src_fclang.c51
1 files changed, 0 insertions, 51 deletions
diff --git a/x11-fonts/fontconfig/files/patch-src_fclang.c b/x11-fonts/fontconfig/files/patch-src_fclang.c
deleted file mode 100644
index 873307acda2c..000000000000
--- a/x11-fonts/fontconfig/files/patch-src_fclang.c
+++ /dev/null
@@ -1,51 +0,0 @@
---- src/fclang.c.orig 2020-11-28 01:56:42 UTC
-+++ src/fclang.c
-@@ -183,6 +183,7 @@ FcLangNormalize (const FcChar8 *lang)
- {
- FcChar8 *result = NULL, *s, *orig;
- char *territory, *encoding, *modifier;
-+ char *script;
- size_t llen, tlen = 0, mlen = 0;
-
- if (!lang || !*lang)
-@@ -246,27 +247,33 @@ FcLangNormalize (const FcChar8 *lang)
- modifier = encoding;
- }
- }
-- territory = strchr ((const char *) s, '_');
-- if (!territory)
-- territory = strchr ((const char *) s, '-');
-+ territory = strrchr ((const char *) s, '_');
- if (territory)
- {
- *territory = 0;
- territory++;
- tlen = strlen (territory);
- }
-+ /* There might by a script component, e.g. sr_Cyrl_RS@UTF-8. We can't assume all legal locale
-+ names are in the form <lang>_<country code>.<encoding>. If the script component is here,
-+ skip it to define the language properly (e.g. "sr" instead of "sr_Cyrl") */
-+ script = strchr ((const char *) s, '_');
-+ if (script)
-+ {
-+ *script = 0;
-+ }
- llen = strlen ((const char *) s);
- if (llen < 2 || llen > 3)
- {
-- fprintf (stderr, "Fontconfig warning: ignoring %s: not a valid language tag\n",
-- lang);
-+ fprintf (stderr, "Fontconfig warning: ignoring %s: not a valid language tag (%s)\n",
-+ s, lang);
- goto bail0;
- }
- if (territory && (tlen < 2 || tlen > 3) &&
- !(territory[0] == 'z' && tlen < 5))
- {
-- fprintf (stderr, "Fontconfig warning: ignoring %s: not a valid region tag\n",
-- lang);
-+ fprintf (stderr, "Fontconfig warning: ignoring %s: not a valid region tag (%s)\n",
-+ territory, lang);
- goto bail0;
- }
- if (territory)