diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-01-21 13:49:22 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-01-21 13:49:22 +0000 |
commit | 5c45e068d75b49e595bc60f84d223b83ffaac4d8 (patch) | |
tree | 44b6355422e5b24ecdcf865cf55d078214682e1c /gdb/config.in | |
parent | b8667b619154d23e7c97a08823a4d9bbc3112e66 (diff) | |
download | gdb-5c45e068d75b49e595bc60f84d223b83ffaac4d8.zip gdb-5c45e068d75b49e595bc60f84d223b83ffaac4d8.tar.gz gdb-5c45e068d75b49e595bc60f84d223b83ffaac4d8.tar.bz2 |
* acconfig.h (HAVE_STRUCT_REG_R_FS, HAVE_STRUCT_R_GS): Remove
undefs.
* configure.ac: Use AC_CHECK_MEMBERS to check whether `struct
thread' has a td_pcb member and whether `struct reg' has r_fs and
r_gs members.
* configure, config.in: Regenerate.
Diffstat (limited to 'gdb/config.in')
-rw-r--r-- | gdb/config.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gdb/config.in b/gdb/config.in index 63b9e61..9c6414a 100644 --- a/gdb/config.in +++ b/gdb/config.in @@ -4,12 +4,6 @@ # undef _GNU_SOURCE #endif -/* Define if your struct reg has r_fs. */ -#undef HAVE_STRUCT_REG_R_FS - -/* Define if your struct reg has r_gs. */ -#undef HAVE_STRUCT_REG_R_GS - /* Define if pstatus_t type is available */ #undef HAVE_PSTATUS_T @@ -457,10 +451,16 @@ /* Define to 1 if your system has struct reg in <machine/reg.h>. */ #undef HAVE_STRUCT_REG +/* Define to 1 if `r_fs' is member of `struct reg'. */ +#undef HAVE_STRUCT_REG_R_FS + +/* Define to 1 if `r_gs' is member of `struct reg'. */ +#undef HAVE_STRUCT_REG_R_GS + /* Define to 1 if `st_blocks' is member of `struct stat'. */ #undef HAVE_STRUCT_STAT_ST_BLOCKS -/* Define to 1 if your system has td_pcb in struct thread. */ +/* Define to 1 if `td_pcb' is member of `struct thread'. */ #undef HAVE_STRUCT_THREAD_TD_PCB /* Define to 1 if you have the `syscall' function. */ |