summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-02-21 14:35:01 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-02-21 14:35:01 +0000
commit61b335b794bb45efc5fcdb9d363b95b7bf26f66a (patch)
tree4c66522529c1901e673bf18cd92f4ce355258fac /configure.in
parent99a968b8ca0c28fc480b68683f5898c97e9a923e (diff)
downloadlibapr-61b335b794bb45efc5fcdb9d363b95b7bf26f66a.tar.gz
disable sendfile() support on s390 linux due to a system problem.
Submitted by: Martin Kraemer Reviewed by: Jeff Trawick git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61271 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index d3bcc489f..75a34bb30 100644
--- a/configure.in
+++ b/configure.in
@@ -650,6 +650,9 @@ case "$OS" in
*alpha*-dec-osf* )
sendfile="0"
;;
+ s390-*-linux-gnu)
+ sendfile="0"
+ ;;
esac
if test "$orig_sendfile" != "$sendfile"; then
echo "sendfile support disabled to avoid system problem"