From: Joel Brobecker Date: Sun, 14 Sep 2008 06:37:18 +0000 (+0000) Subject: * defs.h (GCC_GENERATED_STDINT_H): Define. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=06e476f547819d9384168d8e768724ad222be54d;p=binutils-gdb.git * defs.h (GCC_GENERATED_STDINT_H): Define. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 897c3acf147..865b52393f3 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2008-09-13 Joel Brobecker + + * defs.h (GCC_GENERATED_STDINT_H): Define. + 2008-09-13 Tom Tromey * varobj.c (varobj_set_display_format): Use xfree. diff --git a/gdb/defs.h b/gdb/defs.h index b0d18d2cd34..23a65994d30 100644 --- a/gdb/defs.h +++ b/gdb/defs.h @@ -30,6 +30,20 @@ #include #include +/* The libdecnumber library, on which GDB depends, includes a header file + called gstdint.h instead of relying directly on stdint.h. GDB, on the + other hand, includes stdint.h directly, relying on the fact that gnulib + generates a copy if the system doesn't provide one or if it is missing + some features. Unfortunately, gstdint.h and stdint.h cannot be included + at the same time, which may happen when we include a file from + libdecnumber. + + The following macro definition effectively prevents the inclusion of + gstdint.h, as all the definitions it provides are guarded against + the GCC_GENERATED_STDINT_H macro. We already have gnulib/stdint.h + included, so it's ok to blank out gstdint.h. */ +#define GCC_GENERATED_STDINT_H 1 + #ifdef HAVE_STDDEF_H #include #endif