From: Philippe De Muyter Date: Thu, 1 Jul 1999 00:44:57 +0000 (-0600) Subject: acconfig.h (_, N_): Macros removed. X-Git-Tag: prereleases/gcc-2.95-test~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48c3f7b624d8eb2bc66bccc4e3ac1d9e43918894;p=thirdparty%2Fgcc.git acconfig.h (_, N_): Macros removed. h * acconfig.h (_, N_): Macros removed. * lib/system.h (_, N_): Macro definitions moved here. * config.h.in: File regenerated. From-SVN: r27864 --- diff --git a/texinfo/acconfig.h b/texinfo/acconfig.h index d5477faedb72..69e60d44fde7 100644 --- a/texinfo/acconfig.h +++ b/texinfo/acconfig.h @@ -39,10 +39,6 @@ @BOTTOM@ -/* For gettext (NLS) */ -#define _(String) gettext (String) -#define N_(String) (String) - /* Leave that blank line there!! Autoheader needs it. If you're adding to this file, keep in mind: diff --git a/texinfo/config.h.in b/texinfo/config.h.in index 581f05fad2a2..0e466800eba3 100644 --- a/texinfo/config.h.in +++ b/texinfo/config.h.in @@ -248,10 +248,6 @@ /* Define if you have the z library (-lz). */ #undef HAVE_LIBZ -/* For gettext (NLS) */ -#define _(String) gettext (String) -#define N_(String) (String) - /* Leave that blank line there!! Autoheader needs it. If you're adding to this file, keep in mind: diff --git a/texinfo/lib/system.h b/texinfo/lib/system.h index c0595c48d38d..cb3ed0531ff1 100644 --- a/texinfo/lib/system.h +++ b/texinfo/lib/system.h @@ -37,7 +37,11 @@ #ifdef HAVE_LOCALE_H #include #endif + +/* For gettext (NLS). */ #include +#define _(String) gettext (String) +#define N_(String) (String) /* Don't use bcopy! Use memmove if source and destination may overlap, memcpy otherwise. */