From 39b83bdb58704a457a2e83ad4d49f3ddffd52e85 Mon Sep 17 00:00:00 2001 From: gerald Date: Thu, 4 Nov 2004 20:35:08 +0000 Subject: * internal.h (HAVE_ICONV): Undefine if we do not have HAVE_ICONV_H as well. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90079 138bc75d-0d04-0410-961f-82ee72b054a4 --- libcpp/internal.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'libcpp/internal.h') diff --git a/libcpp/internal.h b/libcpp/internal.h index dc1e8fb3d65..15a3dfada9e 100644 --- a/libcpp/internal.h +++ b/libcpp/internal.h @@ -26,7 +26,11 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "symtab.h" #include "cpp-id-data.h" -#if defined HAVE_ICONV_H && defined HAVE_ICONV +#ifndef HAVE_ICONV_H +#undef HAVE_ICONV +#endif + +#if HAVE_ICONV #include #else #define HAVE_ICONV 0 -- cgit v1.2.3