summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-10-05 00:40:49 +0000
committerJeremy Allison <jra@samba.org>2002-10-05 00:40:49 +0000
commitd6486dff6150f79c54c0736c2c8660fe62ed49e0 (patch)
tree9eb6a35ffd2e1161560732e16785042335449131 /source3/configure.in
parent3665777a5bc7ffa92f64ba17daf4cc66c3607198 (diff)
downloadsamba-d6486dff6150f79c54c0736c2c8660fe62ed49e0.tar.gz
samba-d6486dff6150f79c54c0736c2c8660fe62ed49e0.tar.bz2
samba-d6486dff6150f79c54c0736c2c8660fe62ed49e0.zip
Turn on sendfile detection by default in HEAD and 3.0.
Jeremy. (This used to be commit a09ba463b42893dc50a9d118ee114f55f47cb610)
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 e9ad6af93e..4d1fcaefd5 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -2733,9 +2733,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)
@@ -2953,7 +2954,7 @@ samba_cv_HAVE_SENDFILEV=yes,samba_cv_HAVE_SENDFILEV=no)])
AC_MSG_RESULT(no)
;;
esac ],
- AC_MSG_RESULT(no)
+ AC_MSG_RESULT(yes)
)