trawick 01/01/03 12:08:44
Modified: . configure.in
Log:
Issue the we-don't-like-your-sendfile message on all such systems, not just
Tru64.
Revision Changes Path
1.199 +4 -1 apr/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/apr/configure.in,v
retrieving revision 1.198
retrieving revision 1.199
diff -u -r1.198 -r1.199
--- configure.in 2001/01/02 02:20:17 1.198
+++ configure.in 2001/01/03 20:08:43 1.199
@@ -585,6 +585,7 @@
dnl threaded poll() and we don't want to use sendfile on early FreeBSD
dnl systems if we are also using threads.
+orig_sendfile=$sendfile
case "$OS" in
*freebsd*)
if test `echo "$OS" | sed -e 's/.*\(.\)\.\(.\)/\1\2/'` -le "41"; then
@@ -595,9 +596,11 @@
;;
*alpha*-dec-osf* )
sendfile="0"
- echo "sendfile support disabled to avoid system problem"
;;
esac
+if test "$orig_sendfile" != "$sendfile"; then
+ echo "sendfile support disabled to avoid system problem"
+fi
AC_SUBST(sendfile)