diff options
author | Tom Tromey <tromey@redhat.com> | 2002-08-29 18:05:15 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2002-08-29 18:05:15 +0000 |
commit | 0148e1ee90a9cec90cbd0b32b99cf532eaae9699 (patch) | |
tree | a31a718cf9037c5c8f783d5e793792805d6ed4b0 /libjava/configure | |
parent | 3308c46e47a0b17d37b4c29a130e6519c424a737 (diff) | |
download | gcc-0148e1ee90a9cec90cbd0b32b99cf532eaae9699.zip gcc-0148e1ee90a9cec90cbd0b32b99cf532eaae9699.tar.gz gcc-0148e1ee90a9cec90cbd0b32b99cf532eaae9699.tar.bz2 |
natFileDescriptorPosix.cc (setLength): Handle case where ftruncate is missing.
* java/io/natFileDescriptorPosix.cc (setLength): Handle case where
ftruncate is missing.
* configure, include/config.h.in: Rebuilt.
* acconfig.h (HAVE_FTRUNCATE): Mention.
* configure.in: Check for ftruncate.
From-SVN: r56658
Diffstat (limited to 'libjava/configure')
-rwxr-xr-x | libjava/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/configure b/libjava/configure index cb4425d..20b1836 100755 --- a/libjava/configure +++ b/libjava/configure @@ -3734,7 +3734,7 @@ else fi done - for ac_func in fork execvp pipe sigaction + for ac_func in fork execvp pipe sigaction ftruncate do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 echo "configure:3741: checking for $ac_func" >&5 @@ -7730,7 +7730,7 @@ cat >> $CONFIG_STATUS <<\EOF # Split the substitutions into bite-sized pieces for seds with # small command number limits, like on Digital OSF/1 and HP-UX. -ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script. +ac_max_sed_cmds=60 # Maximum number of lines to put in a sed script. ac_file=1 # Number of current file. ac_beg=1 # First line for current file. ac_end=$ac_max_sed_cmds # Line after last line for current file. |