From: Tor Lillqvist Date: Fri, 8 Apr 2005 06:48:17 +0000 (+0000) Subject: Not used on Windows. (unalias_lang): Don't do anything on Windows, there X-Git-Tag: GLIB_2_7_0~82 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=30942cba2881de17b5df8e16f32d334eab2dbc25;p=platform%2Fupstream%2Fglib.git Not used on Windows. (unalias_lang): Don't do anything on Windows, there 2005-04-08 Tor Lillqvist * glib/gutils.c (read_aliases): Not used on Windows. (unalias_lang): Don't do anything on Windows, there is no /usr/share/locale/locale.alias file.. --- diff --git a/ChangeLog b/ChangeLog index a638990..5acd78f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-04-08 Tor Lillqvist + + * glib/gutils.c (read_aliases): Not used on Windows. + (unalias_lang): Don't do anything on Windows, there is no + /usr/share/locale/locale.alias file.. + Thu Apr 7 22:51:15 2005 * glib/gutils.c (g_get_system_data_dirs): Declare glib_top_share_dir diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index a638990..5acd78f 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2005-04-08 Tor Lillqvist + + * glib/gutils.c (read_aliases): Not used on Windows. + (unalias_lang): Don't do anything on Windows, there is no + /usr/share/locale/locale.alias file.. + Thu Apr 7 22:51:15 2005 * glib/gutils.c (g_get_system_data_dirs): Declare glib_top_share_dir diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index a638990..5acd78f 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,9 @@ +2005-04-08 Tor Lillqvist + + * glib/gutils.c (read_aliases): Not used on Windows. + (unalias_lang): Don't do anything on Windows, there is no + /usr/share/locale/locale.alias file.. + Thu Apr 7 22:51:15 2005 * glib/gutils.c (g_get_system_data_dirs): Declare glib_top_share_dir diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index a638990..5acd78f 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +2005-04-08 Tor Lillqvist + + * glib/gutils.c (read_aliases): Not used on Windows. + (unalias_lang): Don't do anything on Windows, there is no + /usr/share/locale/locale.alias file.. + Thu Apr 7 22:51:15 2005 * glib/gutils.c (g_get_system_data_dirs): Declare glib_top_share_dir diff --git a/glib/gutils.c b/glib/gutils.c index ee5a954..282a0e5 100644 --- a/glib/gutils.c +++ b/glib/gutils.c @@ -2202,6 +2202,8 @@ g_get_system_config_dirs (void) return (G_CONST_RETURN gchar * G_CONST_RETURN *) conf_dir_vector; } +#ifndef G_OS_WIN32 + static GHashTable *alias_table = NULL; /* read an alias file for the locales */ @@ -2257,9 +2259,12 @@ read_aliases (gchar *file) fclose (fp); } +#endif + static char * unalias_lang (char *lang) { +#ifndef G_OS_WIN32 char *p; int i; @@ -2280,6 +2285,7 @@ unalias_lang (char *lang) return lang; } } +#endif return lang; }