diff options
author | Zack Weinberg <zack@codesourcery.com> | 2001-10-19 15:17:39 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2001-10-19 15:17:39 +0000 |
commit | 191bf464071d7cd21095b9f1d119c05fd8306493 (patch) | |
tree | 081319da8a2e78a4efbfcb39e1acf6aca8752c83 /gcc/config.in | |
parent | 7c87e9f9216fd7959a5365ae62f9173ce524d21b (diff) | |
download | gcc-191bf464071d7cd21095b9f1d119c05fd8306493.tar.gz |
aclocal.m4 (AM_WITH_NLS): AC_DEFINE HAVE_LIBINTL_H and USE_INCLUDED_LIBINTL when appropriate.
* aclocal.m4 (AM_WITH_NLS): AC_DEFINE HAVE_LIBINTL_H and
USE_INCLUDED_LIBINTL when appropriate.
* configure, config.in: Regenerate.
* Makefile.in (datadir): Set to @datadir@.
(intl.o): Also depend on $(CONFIG_H) and system.h.
* intl.c: Factor out common gettext initialization sequence.
(gcc_init_libintl): New function.
* intl.h: Include intl/libgnuintl.h if USE_INCLUDED_LIBINTL;
otherwise include libintl.h if HAVE_LIBINTL_H; otherwise turn
off NLS. Add multiple include guard. No need to #ifdef-guard
an #undef. Prototype gcc_init_libintl here.
* collect2.c (main), cppmain.c (general_init), gcc.c (main),
gcov.c (main), protoize.c (main), toplev.c (toplev_main):
Use gcc_init_libintl.
intl:
* Makefile.in: Don't copy libgnuintl.h anywhere.
From-SVN: r46348
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/config.in b/gcc/config.in index 46ea80143d0..5f390986be2 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -1,4 +1,4 @@ -/* config.in. Generated automatically from configure.in by autoheader. */ +/* config.in. Generated automatically from configure.in by autoheader 2.13. */ /* Define if using alloca.c. */ #undef C_ALLOCA @@ -511,9 +511,16 @@ is requested. */ #undef ENABLE_NLS +/* Define if you have the <libintl.h> header file. */ +#undef HAVE_LIBINTL_H + /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT +/* Define to use the libintl included with this package instead of any + version in the system libraries. */ +#undef USE_INCLUDED_LIBINTL + /* Define to 1 if installation paths should be looked up in Windows32 Registry. Ignored on non windows32 hosts. */ #undef ENABLE_WIN32_REGISTRY |