#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 ad4734b..83e2bd5 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 fd22c2b..471e5cb 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;