diff options
author | Daniel Jacobowitz <drow@false.org> | 2006-05-15 17:11:59 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2006-05-15 17:11:59 +0000 |
commit | 4e8d927dded819785e749c571f5b6a495a425432 (patch) | |
tree | 34afab207a6996b86c2e09ba223e1a3634175256 /gdb/config.in | |
parent | 64b607e61b2efa2517a6306df3cf3722175fe9ef (diff) | |
download | gdb-4e8d927dded819785e749c571f5b6a495a425432.zip gdb-4e8d927dded819785e749c571f5b6a495a425432.tar.gz gdb-4e8d927dded819785e749c571f5b6a495a425432.tar.bz2 |
* configure.ac: Use GCC_HEADER_STDINT.
* acinclude.m4: Include stdint.m4.
* Makefile.in (gdb_stdint_h): Define.
(distclean): Remove gdb_stdint.h.
(Makefile, stamp-h): Update rules to generate only the correct
files.
(gdb_stdint.h, stamp-int): New rules.
* config.in, configure: Regenerated.
Diffstat (limited to 'gdb/config.in')
-rw-r--r-- | gdb/config.in | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/gdb/config.in b/gdb/config.in index 12001e9..e115854 100644 --- a/gdb/config.in +++ b/gdb/config.in @@ -569,9 +569,24 @@ /* Define to 1 if the `setpgrp' function takes no argument. */ #undef SETPGRP_VOID +/* The size of `char', as computed by sizeof. */ +#undef SIZEOF_CHAR + +/* The size of `int', as computed by sizeof. */ +#undef SIZEOF_INT + +/* The size of `long', as computed by sizeof. */ +#undef SIZEOF_LONG + +/* The size of `short', as computed by sizeof. */ +#undef SIZEOF_SHORT + +/* The size of `void *', as computed by sizeof. */ +#undef SIZEOF_VOID_P + /* If using the C implementation of alloca, define if you know the direction of stack growth for your system; otherwise it will be - automatically deduced at run-time. + automatically deduced at runtime. STACK_DIRECTION > 0 => grows toward higher addresses STACK_DIRECTION < 0 => grows toward lower addresses STACK_DIRECTION = 0 => direction of growth unknown */ @@ -632,13 +647,13 @@ #undef inline #endif -/* Define to `long' if <sys/types.h> does not define. */ +/* Define to `long int' if <sys/types.h> does not define. */ #undef off_t /* Define to `int' if <sys/types.h> does not define. */ #undef pid_t -/* Define to `unsigned' if <sys/types.h> does not define. */ +/* Define to `unsigned int' if <sys/types.h> does not define. */ #undef size_t /* Define on a GNU/Linux system to work around problems in sys/procfs.h. */ |