diff options
author | Daniel Jacobowitz <drow@false.org> | 2002-11-26 01:23:46 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2002-11-26 01:23:46 +0000 |
commit | eb78484829c67075caaa4ac984dd8b50b5d750bc (patch) | |
tree | 5d1c675cdefdc0b97a2387453702bcb940af80f9 /gdb/config.in | |
parent | afbfa4076a55445d5e61f5c872b438d1ea997aeb (diff) | |
download | gdb-eb78484829c67075caaa4ac984dd8b50b5d750bc.zip gdb-eb78484829c67075caaa4ac984dd8b50b5d750bc.tar.gz gdb-eb78484829c67075caaa4ac984dd8b50b5d750bc.tar.bz2 |
* acconfig.h (HAVE_PREAD64): Add.
* configure.in: Check for pread64.
* config.in: Regenerated.
* configure: Regenerated.
* lin-lwp.c (lin_lwp_xfer_memory): Call linux_proc_xfer_memory.
* linux-proc.c (linux_proc_xfer_memory): New function.
* config/nm-linux.h (linux_proc_xfer_memory): Add prototype.
Diffstat (limited to 'gdb/config.in')
-rw-r--r-- | gdb/config.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/config.in b/gdb/config.in index fa1ab9a..921b168 100644 --- a/gdb/config.in +++ b/gdb/config.in @@ -80,6 +80,9 @@ /* Define if your struct reg has r_gs. */ #undef HAVE_STRUCT_REG_R_GS +/* Define if the pread64 function is available. */ +#undef HAVE_PREAD64 + /* Define if <link.h> exists and defines struct link_map which has members with an ``l_'' prefix. (For Solaris, SVR4, and SVR4-like systems.) */ @@ -517,3 +520,12 @@ /* Define if <thread_db.h> has the TD_NOTALLOC error code. */ #undef THREAD_DB_HAS_TD_NOTALLOC +/* Define to be a string naming the default host character set. */ +#undef GDB_DEFAULT_HOST_CHARSET + +/* Define if you have the iconv() function. */ +#undef HAVE_ICONV + +/* Define as const if the declaration of iconv() needs const. */ +#undef ICONV_CONST + |