diff options
Diffstat (limited to 'gdb/gdbserver/config.in')
-rw-r--r-- | gdb/gdbserver/config.in | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/gdb/gdbserver/config.in b/gdb/gdbserver/config.in index dda7c1f..05537df 100644 --- a/gdb/gdbserver/config.in +++ b/gdb/gdbserver/config.in @@ -232,16 +232,16 @@ /* Define to 1 if you have the <string.h> header file. */ #undef HAVE_STRING_H -/* Define to 1 if `struct stat' is a member of `st_blksize'. */ +/* Define to 1 if `st_blksize' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_BLKSIZE -/* Define to 1 if `struct stat' is a member of `st_blocks'. */ +/* Define to 1 if `st_blocks' is a member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_BLOCKS -/* Define to 1 if `struct user_regs_struct' is a member of `fs_base'. */ +/* Define to 1 if `fs_base' is a member of `struct user_regs_struct'. */ #undef HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE -/* Define to 1 if `struct user_regs_struct' is a member of `gs_base'. */ +/* Define to 1 if `gs_base' is a member of `struct user_regs_struct'. */ #undef HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE /* Define to 1 if the target supports __sync_*_compare_and_swap */ @@ -399,6 +399,11 @@ /* Define if an XML target description is available. */ #undef USE_XML +/* Enable large inode numbers on Mac OS X 10.5. */ +#ifndef _DARWIN_USE_64_BIT_INODE +# define _DARWIN_USE_64_BIT_INODE 1 +#endif + /* Number of bits in a file offset, on hosts where this is settable. */ #undef _FILE_OFFSET_BITS @@ -418,5 +423,8 @@ /* Define to `int' if <sys/types.h> does not define. */ #undef pid_t +/* Define to `unsigned int' if <sys/types.h> does not define. */ +#undef size_t + /* Define as `fork' if `vfork' does not work. */ #undef vfork |