diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2009-09-04 14:33:39 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2009-09-04 14:33:39 +0000 |
commit | b4a451f5e182a7753be5b12b86ee7ab6af1d3779 (patch) | |
tree | 0ea5aeb105feacdd4ca302b277e953f9a09409b9 /libiberty/config.in | |
parent | 8deaa05e79c32747f1f795c3f47aa77f8348a158 (diff) | |
download | gdb-b4a451f5e182a7753be5b12b86ee7ab6af1d3779.zip gdb-b4a451f5e182a7753be5b12b86ee7ab6af1d3779.tar.gz gdb-b4a451f5e182a7753be5b12b86ee7ab6af1d3779.tar.bz2 |
2009-09-04 Ozkan Sezer <sezeroz@gmail.com>
PR target/39065
* configure.ac: Replace AC_CHECK_TYPE() for intptr_t and uintptr_t
with AC_TYPE_INTPTR_T and AC_TYPE_UINTPTR_T.
* config.in: Regenerated.
* configure: Regenerated.
Diffstat (limited to 'libiberty/config.in')
-rw-r--r-- | libiberty/config.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libiberty/config.in b/libiberty/config.in index e962769..1931648 100644 --- a/libiberty/config.in +++ b/libiberty/config.in @@ -121,6 +121,9 @@ /* Define to 1 if you have the `insque' function. */ #undef HAVE_INSQUE +/* Define to 1 if the system has the type `intptr_t'. */ +#undef HAVE_INTPTR_T + /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H @@ -457,13 +460,15 @@ #undef inline #endif -/* Define to `long' if <sys/types.h> does not define. */ +/* Define to the type of a signed integer type wide enough to hold a pointer, + if such a type exists, and if the system does not define it. */ #undef intptr_t /* Define to `int' if <sys/types.h> does not define. */ #undef pid_t -/* Define to `unsigned long' if <sys/types.h> does not define. */ +/* Define to the type of an unsigned integer type wide enough to hold a + pointer, if such a type exists, and if the system does not define it. */ #undef uintptr_t /* Define as `fork' if `vfork' does not work. */ |