1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/lightdm/musl-language.patch
Taner Tas f73cb5c48e testing/lightdm* -> community/
lightdm* : move from testing
lightdm-gtk-greeter: upgrade to 2.0.6
2019-05-25 15:15:14 +02:00

36 lines
864 B
Diff

--- a/liblightdm-gobject/language.c
+++ b/liblightdm-gobject/language.c
@@ -210,6 +210,7 @@
if (!priv->name)
{
+ #if HAVE_LC_IDENTIFICATION
g_autofree gchar *locale = get_locale_name (priv->code);
if (locale)
{
@@ -223,6 +224,8 @@
setlocale (LC_ALL, current);
}
+ #endif
+
if (!priv->name)
{
g_auto(GStrv) tokens = g_strsplit_set (priv->code, "_.@", 2);
@@ -250,6 +253,7 @@
if (!priv->territory && strchr (priv->code, '_'))
{
+ #if HAVE_LC_IDENTITIFICATION
g_autofree gchar *locale = get_locale_name (priv->code);
if (locale)
{
@@ -263,6 +267,8 @@
setlocale (LC_ALL, current);
}
+ #endif
+
if (!priv->territory)
{
g_auto(GStrv) tokens = g_strsplit_set (priv->code, "_.@", 3);