From 6aa95e87c1f259589ff9c7812707e4b30b8f6fd7 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 30 Apr 2012 16:23:05 +0100 Subject: Remove "convenience header" "gettext.h" and use instead. gettextize provides a local file called "gettext.h". Remove this and use from glibc headers instead. Most of this change is mechanical: #include in every C file which uses any gettext function. But also we remove the gettext.h file, and adjust the "_" macros. Note that this effectively removes the ./configure --disable-nls option, although we don't know if that ever worked. --- fish/options.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'fish/options.c') diff --git a/fish/options.c b/fish/options.c index 1a2e8c53..b3ad6751 100644 --- a/fish/options.c +++ b/fish/options.c @@ -20,6 +20,8 @@ #include #include +#include +#include #include "c-ctype.h" -- cgit