diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-04-30 16:23:05 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-05-01 08:57:55 +0100 |
commit | 6aa95e87c1f259589ff9c7812707e4b30b8f6fd7 (patch) | |
tree | 46660d96146b7ab15e7b56fe167f68cef65a95ca /generator | |
parent | ea74856d953aec39af6ee556221618fda644312f (diff) | |
download | libguestfs-6aa95e87c1f259589ff9c7812707e4b30b8f6fd7.tar.gz libguestfs-6aa95e87c1f259589ff9c7812707e4b30b8f6fd7.tar.xz libguestfs-6aa95e87c1f259589ff9c7812707e4b30b8f6fd7.zip |
Remove "convenience header" "gettext.h" and use <libintl.h> instead.
gettextize provides a local file called "gettext.h". Remove this and
use <libintl.h> from glibc headers instead.
Most of this change is mechanical: #include <libintl.h> 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.
Diffstat (limited to 'generator')
-rw-r--r-- | generator/generator_fish.ml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/generator/generator_fish.ml b/generator/generator_fish.ml index c4ab69d9..97625cc4 100644 --- a/generator/generator_fish.ml +++ b/generator/generator_fish.ml @@ -62,6 +62,7 @@ let generate_fish_cmds () = pr "#include <stdlib.h>\n"; pr "#include <string.h>\n"; pr "#include <inttypes.h>\n"; + pr "#include <libintl.h>\n"; pr "\n"; pr "#include \"c-ctype.h\"\n"; pr "#include \"full-write.h\"\n"; @@ -1000,9 +1001,12 @@ and generate_fish_event_names () = generate_header CStyle GPLv2plus; pr "\ +#include <config.h> + #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <libintl.h> #include \"fish.h\" |