diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2006-01-02 18:53:27 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2006-01-02 18:53:27 +0000 |
commit | 4c4b3eb0fcd841317cb4ccee76a1152a32e7be8d (patch) | |
tree | 617d15c744e086d1f228e2064e3a25400263e524 /libdecnumber/decContext.h | |
parent | a6fbc1e26b60d2d7b3ce0b820d4a9e12e426fd75 (diff) | |
download | gcc-4c4b3eb0fcd841317cb4ccee76a1152a32e7be8d.zip gcc-4c4b3eb0fcd841317cb4ccee76a1152a32e7be8d.tar.gz gcc-4c4b3eb0fcd841317cb4ccee76a1152a32e7be8d.tar.bz2 |
re PR libgomp/25259 (bootstrap failures on non-C99 platforms (no stdint.h))
config:
2006-01-02 Paolo Bonzini <bonzini@gnu.org>
PR target/25259
* stdint.m4: New.
gcc:
2006-01-02 Paolo Bonzini <bonzini@gnu.org>
PR target/25259
* Makefile.in (DECNUMINC): Include libdecnumber's build directory.
libgfortran:
2006-01-02 Paolo Bonzini <bonzini@gnu.org>
PR target/25259
* configure.ac: Use GCC_HEADER_STDINT.
* libgfortran.h: Include gstdint.h.
* aclocal.m4: Regenerate.
* configure: Regenerate.
libdecnumber:
2006-01-02 Paolo Bonzini <bonzini@gnu.org>
PR target/25259
* configure.ac: Use GCC_HEADER_STDINT.
* decContext.h: Include gstdint.h.
* aclocal.m4: Regenerate.
* configure: Regenerate.
From-SVN: r109241
Diffstat (limited to 'libdecnumber/decContext.h')
-rw-r--r-- | libdecnumber/decContext.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libdecnumber/decContext.h b/libdecnumber/decContext.h index d6b0a08..537d319 100644 --- a/libdecnumber/decContext.h +++ b/libdecnumber/decContext.h @@ -1,5 +1,5 @@ /* Decimal Context module header for the decNumber C Library - Copyright (C) 2005 Free Software Foundation, Inc. + Copyright (C) 2005, 2006 Free Software Foundation, Inc. Contributed by IBM Corporation. Author Mike Cowlishaw. This file is part of GCC. @@ -40,9 +40,7 @@ #define DECCFULLNAME "Decimal Context Descriptor" /* Verbose name */ #define DECCAUTHOR "Mike Cowlishaw" /* Who to blame */ -#ifdef HAVE_STDINT_H -#include <stdint.h> /* C99 standard integers */ -#endif +#include "gstdint.h" /* C99 standard integers */ #include <signal.h> /* for traps */ |