diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-18 17:17:03 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-18 17:17:03 +0000 |
commit | 7093ff41e72f8f89b3fd38766ca755bb1a2b3859 (patch) | |
tree | f2a7bb71c943a275267287097beaf50fac835576 /gcc/config.in | |
parent | 6e537ce81f9e79b627e0b95162036304de028a4e (diff) | |
download | gcc-7093ff41e72f8f89b3fd38766ca755bb1a2b3859.tar.gz |
For PR java/2812:
* configure: Rebuilt.
* configure.in: Don't check for iconv.h or iconv(); use AM_ICONV
instead.
* aclocal.m4 (AM_ICONV): New macro from Bruno Haible.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44119 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/config.in b/gcc/config.in index 53995ba2e4b..88a751703c4 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -125,9 +125,6 @@ /* Define if you have the gettimeofday function. */ #undef HAVE_GETTIMEOFDAY -/* Define if you have the iconv function. */ -#undef HAVE_ICONV - /* Define if you have the isascii function. */ #undef HAVE_ISASCII @@ -200,9 +197,6 @@ /* Define if you have the <fcntl.h> header file. */ #undef HAVE_FCNTL_H -/* Define if you have the <iconv.h> header file. */ -#undef HAVE_ICONV_H - /* Define if you have the <langinfo.h> header file. */ #undef HAVE_LANGINFO_H @@ -365,6 +359,12 @@ /* Define if read-only mmap of a plain file works. */ #undef HAVE_MMAP_FILE +/* Define if you have the iconv() function. */ +#undef HAVE_ICONV + +/* Define as const if the declaration of iconv() needs const. */ +#undef ICONV_CONST + /* Define to 1 if we found this declaration otherwise define to 0. */ #undef HAVE_DECL_GETENV |