summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-10-05 00:41:16 +0000
committerJeremy Allison <jra@samba.org>2002-10-05 00:41:16 +0000
commitf86f4a4b66f772538185cd7a7aac26c4d9135379 (patch)
treee4e69ec6cc3138f3cd454c661d2093e394c8094a /source3/configure.in
parent9c94d1a2f72b6fcbbd056804837fc8719806491b (diff)
downloadsamba-f86f4a4b66f772538185cd7a7aac26c4d9135379.tar.gz
samba-f86f4a4b66f772538185cd7a7aac26c4d9135379.tar.bz2
samba-f86f4a4b66f772538185cd7a7aac26c4d9135379.zip
Turn on sendfile detection by default in HEAD and 3.0.
Jeremy. (This used to be commit 6a9d0c9bdd57c135c4565da829b2fa4f44874a6d)
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 81898e6af7..bfbc09833d 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -2737,9 +2737,10 @@ samba_cv_HAVE_ACL_GET_PERM_NP=yes,samba_cv_HAVE_ACL_GET_PERM_NP=no)])
#################################################
# check for sendfile support
-AC_MSG_CHECKING(whether to check for support sendfile)
+with_sendfile_support=yes
+AC_MSG_CHECKING(whether to check to support sendfile)
AC_ARG_WITH(sendfile-support,
-[ --with-sendfile-support Check for sendfile support (default=no)],
+[ --with-sendfile-support Check for sendfile support (default=yes)],
[ case "$withval" in
yes)
@@ -2957,7 +2958,7 @@ samba_cv_HAVE_SENDFILEV=yes,samba_cv_HAVE_SENDFILEV=no)])
AC_MSG_RESULT(no)
;;
esac ],
- AC_MSG_RESULT(no)
+ AC_MSG_RESULT(yes)
)