Files
bsdports/x11/libfontconfig/files/patch-src_fclang.c
2019-12-26 07:26:06 +00:00

52 lines
1.6 KiB
C

--- src/fclang.c.orig 2017-09-21 04:44:27 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)