diff options
author | Daniel Jacobowitz <drow@false.org> | 2007-12-16 21:50:05 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2007-12-16 21:50:05 +0000 |
commit | 4e799345942e3d777a2639a00892b67d084204c5 (patch) | |
tree | b6014f5c354d47a513c01b20881b92c31490e414 /gdb/gdbserver/configure | |
parent | c244f7a6ffdc6e369f271b3a2284a6e364a1cb0b (diff) | |
download | gdb-4e799345942e3d777a2639a00892b67d084204c5.zip gdb-4e799345942e3d777a2639a00892b67d084204c5.tar.gz gdb-4e799345942e3d777a2639a00892b67d084204c5.tar.bz2 |
* configure.ac: Check for pread and pwrite.
* hostio.c (handle_pread): Fall back to lseek and read.
(handle_pwrite): Fall back to lseek and write.
* config.in, configure: Regenerated.
Diffstat (limited to 'gdb/gdbserver/configure')
-rwxr-xr-x | gdb/gdbserver/configure | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/gdbserver/configure b/gdb/gdbserver/configure index 0b5ed9d..b8b2879 100755 --- a/gdb/gdbserver/configure +++ b/gdb/gdbserver/configure @@ -3099,7 +3099,9 @@ fi done -for ac_func in pread64 + + +for ac_func in pread pwrite pread64 do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_func" >&5 |