diff options
author | Tom Tromey <tromey@cygnus.com> | 2000-09-15 22:31:56 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2000-09-15 22:31:56 +0000 |
commit | 4c4b521a59ec0cafbd1b5be5b13c4ecd5d88a79b (patch) | |
tree | 07a325fc21046a2bda7d9e548f3a8ed9a9cb8e27 /gcc/java/lex.h | |
parent | 16abe34a39fef1d8964802eb61bc3f665ce58461 (diff) | |
download | gcc-4c4b521a59ec0cafbd1b5be5b13c4ecd5d88a79b.zip gcc-4c4b521a59ec0cafbd1b5be5b13c4ecd5d88a79b.tar.gz gcc-4c4b521a59ec0cafbd1b5be5b13c4ecd5d88a79b.tar.bz2 |
* lex.h: Use HAVE_ICONV_H, not HAVE_ICONV.
From-SVN: r36449
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 cf29aa1..68cb1c0 100644 --- a/gcc/java/lex.h +++ b/gcc/java/lex.h @@ -35,7 +35,7 @@ extern int lineno; /* A Unicode character, as read from the input file */ typedef unsigned short unicode_t; -#ifdef HAVE_ICONV +#ifdef HAVE_ICONV_H #include <iconv.h> #endif /* HAVE_ICONV */ |