diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2003-12-03 16:48:20 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2003-12-03 16:48:20 +0000 |
commit | eb158727b642d5cf1477f98722e5db69c525d086 (patch) | |
tree | 92cf133ffcbf252c37de8ae8b31c002c5adf431c /gcc/java/lex.h | |
parent | efdfd311d664c32c3a6108f920fc978bb95c5d8d (diff) | |
download | gcc-eb158727b642d5cf1477f98722e5db69c525d086.zip gcc-eb158727b642d5cf1477f98722e5db69c525d086.tar.gz gcc-eb158727b642d5cf1477f98722e5db69c525d086.tar.bz2 |
aclocal.m4 (AM_ICONV): Add explicit check for iconv.h.
* aclocal.m4 (AM_ICONV): Add explicit check for iconv.h.
* config.in, configure.in: Regenerate.
* cpphash.h, java/lex.h: Check both HAVE_ICONV and HAVE_ICONV_H
before including iconv.h.
From-SVN: r74234
Diffstat (limited to 'gcc/java/lex.h')
-rw-r--r-- | gcc/java/lex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/lex.h b/gcc/java/lex.h index 037d044..c339cc1 100644 --- a/gcc/java/lex.h +++ b/gcc/java/lex.h @@ -35,7 +35,7 @@ extern FILE *finput; /* A Unicode character, as read from the input file */ typedef unsigned short unicode_t; -#ifdef HAVE_ICONV +#if defined HAVE_ICONV_H && defined HAVE_ICONV #include <iconv.h> #endif /* HAVE_ICONV */ |