From patchwork Thu Aug 26 17:20:35 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [libcpp] Include if available Date: Thu, 26 Aug 2010 07:20:35 -0000 From: Rainer Orth X-Patchwork-Id: 62793 Message-Id: To: gcc-patches@gcc.gnu.org Cc: Richard Henderson The recent patch to libcpp/lex.c broke Tru64 UNIX V5.1B bootstrap: the platform has uintptr_t, but it's only declared in . To fix this, this patch includes the header in system.h if it exists. With it, I can at least build libcpp and the bootstrap continues. Ok for mainline (probably obvious)? Rainer 2010-08-26 Rainer Orth * system.h [HAVE_INTTYPES_H]: Include inttypes.h. diff -r 0cf77b5772bf libcpp/system.h --- a/libcpp/system.h Mon Aug 23 13:25:29 2010 +0200 +++ b/libcpp/system.h Thu Aug 26 19:04:15 2010 +0200 @@ -1,6 +1,6 @@ /* Get common system includes and various definitions and declarations based on autoconf macros. - Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2009 + Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2009, 2010 Free Software Foundation, Inc. This file is part of GCC. @@ -32,6 +32,9 @@ #ifdef HAVE_STDINT_H # include #endif +#ifdef HAVE_INTTYPES_H +# include +#endif #include