Not used on Windows. (unalias_lang): Don't do anything on Windows, there
authorTor Lillqvist <tml@novell.com>
Fri, 8 Apr 2005 06:48:17 +0000 (06:48 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Fri, 8 Apr 2005 06:48:17 +0000 (06:48 +0000)
2005-04-08  Tor Lillqvist  <tml@novell.com>

* 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..

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-8
glib/gutils.c

index a638990..5acd78f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-04-08  Tor Lillqvist  <tml@novell.com>
+
+       * 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  <yosh@gimp.org>
 
        * glib/gutils.c (g_get_system_data_dirs): Declare glib_top_share_dir
index a638990..5acd78f 100644 (file)
@@ -1,3 +1,9 @@
+2005-04-08  Tor Lillqvist  <tml@novell.com>
+
+       * 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  <yosh@gimp.org>
 
        * glib/gutils.c (g_get_system_data_dirs): Declare glib_top_share_dir
index a638990..5acd78f 100644 (file)
@@ -1,3 +1,9 @@
+2005-04-08  Tor Lillqvist  <tml@novell.com>
+
+       * 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  <yosh@gimp.org>
 
        * glib/gutils.c (g_get_system_data_dirs): Declare glib_top_share_dir
index a638990..5acd78f 100644 (file)
@@ -1,3 +1,9 @@
+2005-04-08  Tor Lillqvist  <tml@novell.com>
+
+       * 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  <yosh@gimp.org>
 
        * glib/gutils.c (g_get_system_data_dirs): Declare glib_top_share_dir
index ee5a954..282a0e5 100644 (file)
@@ -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;
 }