diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/input.c | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3cf7074..34cf61e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-08-08 David Malcolm <dmalcolm@redhat.com> + + PR bootstrap/72844 + * input.c: Ensure that HAVE_ICONV is defined. + 2016-08-08 Jakub Jelinek <jakub@redhat.com> PR middle-end/72781 diff --git a/gcc/input.c b/gcc/input.c index d058b8a..790de93 100644 --- a/gcc/input.c +++ b/gcc/input.c @@ -25,6 +25,10 @@ along with GCC; see the file COPYING3. If not see #include "selftest.h" #include "cpplib.h" +#ifndef HAVE_ICONV +#define HAVE_ICONV 0 +#endif + /* This is a cache used by get_next_line to store the content of a file to be searched for file lines. */ struct fcache |