summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@gnome.org>2002-01-08 22:23:49 +0000
committerKjartan Maraas <kmaraas@src.gnome.org>2002-01-08 22:23:49 +0000
commitec9d0ad020bddf8e4bfaede8b06def3e79cd33aa (patch)
tree05485597241a078cb324efd8f20a203efb6025a9
parent8de16d6df091c95291f461ee02c465f7ba60464a (diff)
downloadgnome-common-ec9d0ad020bddf8e4bfaede8b06def3e79cd33aa.tar.gz
#include <libintl.h> to get rid of warnings.
2002-01-06 Kjartan Maraas <kmaraas@gnome.org> * popt.c, popthelp.c: #include <libintl.h> to get rid of warnings. svn path=/branches/gnome-libs-1-0/; revision=2235
-rw-r--r--support/ChangeLog4
-rw-r--r--support/popt.c1
-rw-r--r--support/popthelp.c1
3 files changed, 6 insertions, 0 deletions
diff --git a/support/ChangeLog b/support/ChangeLog
index 30b894a..16e10b4 100644
--- a/support/ChangeLog
+++ b/support/ChangeLog
@@ -1,3 +1,7 @@
+2002-01-06 Kjartan Maraas <kmaraas@gnome.org>
+
+ * popt.c, popthelp.c: #include <libintl.h> to get rid of warnings.
+
2001-09-13 Havoc Pennington <hp@redhat.com>
* Makefile.am (gnomeincludedir): move popt-gnome.h to includedir/gnome-1.0
diff --git a/support/popt.c b/support/popt.c
index 3e8f73e..e521be3 100644
--- a/support/popt.c
+++ b/support/popt.c
@@ -14,6 +14,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <libintl.h>
#if HAVE_ALLOCA_H
# include <alloca.h>
diff --git a/support/popthelp.c b/support/popthelp.c
index fc2764a..9fa3056 100644
--- a/support/popthelp.c
+++ b/support/popthelp.c
@@ -12,6 +12,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <libintl.h>
#ifdef HAVE_ALLOCA_H
#include <alloca.h>