diff options
| author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-15 22:31:56 +0000 |
|---|---|---|
| committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-15 22:31:56 +0000 |
| commit | 3c6e62032c8ebde80a926441ca66c088459c7cf0 (patch) | |
| tree | 07a325fc21046a2bda7d9e548f3a8ed9a9cb8e27 | |
| parent | 9b005109a622ec79b6c6c2f838bb63ff50b8b9e5 (diff) | |
| download | ppe42-gcc-3c6e62032c8ebde80a926441ca66c088459c7cf0.tar.gz ppe42-gcc-3c6e62032c8ebde80a926441ca66c088459c7cf0.zip | |
* lex.h: Use HAVE_ICONV_H, not HAVE_ICONV.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36449 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/java/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/java/lex.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 40ba522093c..878e76d03f7 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,7 @@ +2000-09-14 Tom Tromey <tromey@cygnus.com> + + * lex.h: Use HAVE_ICONV_H, not HAVE_ICONV. + 2000-09-13 Tom Tromey <tromey@cygnus.com> * jcf-parse.c: Include <locale.h>. diff --git a/gcc/java/lex.h b/gcc/java/lex.h index cf29aa16a70..68cb1c0e5eb 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 */ |

