#include <locale.h> to fix the build.
authorKjartan Maraas <kmaraas@gnome.org>
Tue, 13 May 2008 15:33:09 +0000 (15:33 +0000)
committerKjartan Maraas <kmaraas@src.gnome.org>
Tue, 13 May 2008 15:33:09 +0000 (15:33 +0000)
2008-05-13  Kjartan Maraas  <kmaraas@gnome.org>

* glib/gi18n.c: #include <locale.h> to fix the build.

svn path=/trunk/; revision=6888

ChangeLog
glib/gi18n.c

index ad4734b1e5637574641863e33b0970dd30a29a73..83e2bd5981bb2c6f6a4233cfe1112e6fa0fb09fc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-05-13  Kjartan Maraas  <kmaraas@gnome.org>
+
+       * glib/gi18n.c: #include <locale.h> to fix the build.
+
 2008-05-12  Yair Hershkovitz  <yairhr@gmail.com>
 
        * glib/gi18n.c (g_i18n_init): Coding convention fix. Space between
index fd22c2b0b52132b0853c16bf22297998cf379e50..471e5cb85d797dff8f53b6e924d1bd29f704fb74 100644 (file)
@@ -28,7 +28,8 @@
 #include "galias.h"
 #include "gmessages.h"
 #include "galloca.h"
-#include "string.h"
+#include <string.h>
+#include <locale.h>
 
 static gboolean g_should_translate = TRUE;