Mercurial > pidgin.yaz
changeset 8730:8b935eddeb10
[gaim-migrate @ 9485]
Solaris iconv-related buildage fixes from Etan. He has a great name. In
fact, the anglicanized version of his name may be the coolest name I can
think of. Seriously.
committer: Tailor Script <tailor@pidgin.im>
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Tue, 20 Apr 2004 22:40:05 +0000 |
parents | 7024b9145357 |
children | d07c5e085a9f |
files | src/gaim-remote.c src/gtkconv.c src/internal.h src/main.c |
diffstat | 4 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gaim-remote.c Tue Apr 20 20:31:11 2004 +0000 +++ b/src/gaim-remote.c Tue Apr 20 22:40:05 2004 +0000 @@ -24,7 +24,6 @@ #include "internal.h" #include <getopt.h> -#include <locale.h> #include <gaim-remote/remote.h>
--- a/src/gtkconv.c Tue Apr 20 20:31:11 2004 +0000 +++ b/src/gtkconv.c Tue Apr 20 22:40:05 2004 +0000 @@ -35,7 +35,6 @@ #endif #include <gdk/gdkkeysyms.h> -#include <locale.h> #include "debug.h" #include "imgstore.h"
--- a/src/internal.h Tue Apr 20 20:31:11 2004 +0000 +++ b/src/internal.h Tue Apr 20 22:40:05 2004 +0000 @@ -38,6 +38,7 @@ # define N_(String) (String) # endif #else +# include <locale.h> # define N_(String) (String) # define _(x) (x) # define ngettext(Singular, Plural, Number) ((Number == 1) ? (Singular) : (Plural))