The Samba-Bugzilla – Attachment 8037 Details for
Bug 8344
the --without-sendfile-support option did not at work when building samba
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch for v4-0-test
tmp40.diff (text/plain), 1.97 KB, created by
Stefan Metzmacher
on 2012-10-10 07:12:46 UTC
(
hide
)
Description:
Patch for v4-0-test
Filename:
MIME Type:
Creator:
Stefan Metzmacher
Created:
2012-10-10 07:12:46 UTC
Size:
1.97 KB
patch
obsolete
>From 7d70c26267033382d7d3a362c58164c6f9c41e33 Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Bj=C3=B6rn=20Jacke?= <bj@sernet.de> >Date: Fri, 14 Sep 2012 00:02:22 +0200 >Subject: [PATCH] autoconf: fix --with(out)-sendfile-support option handling > >this fixes bug #8344 >(cherry picked from commit 70bc93650f86a76c6f1617139cb71539c76abf42) >--- > source3/configure.in | 35 ++++++++++++++++++++--------------- > 1 file changed, 20 insertions(+), 15 deletions(-) > >diff --git a/source3/configure.in b/source3/configure.in >index e6a1310..a6cc444 100644 >--- a/source3/configure.in >+++ b/source3/configure.in >@@ -5443,16 +5443,23 @@ fi > ################################################# > # check for sendfile support > >-with_sendfile_support=yes >-AC_MSG_CHECKING(whether to check to support sendfile) >+AC_MSG_CHECKING(whether sendfile support should be built in) > AC_ARG_WITH(sendfile-support, >-[AS_HELP_STRING([--with-sendfile-support], [Check for sendfile support (default=yes)])], >+[AS_HELP_STRING([--with-sendfile-support], [Whether sendfile support should be built in (default=auto)])], > [ case "$withval" in >- yes) >- >- AC_MSG_RESULT(yes); >+ yes|no) >+ AC_MSG_RESULT($withval); >+ with_sendfile_support=$withval >+ ;; >+ *) >+ AC_MSG_RESULT(yes) >+ with_sendfile_support=auto >+ ;; >+ esac ], >+) > >- case "$host_os" in >+if test x$with_sendfile_support != xno ; then >+ case "$host_os" in > *linux* | gnu* | k*bsd*-gnu | kopensolaris*-gnu) > AC_CACHE_CHECK([for linux sendfile support],samba_cv_HAVE_SENDFILE,[ > AC_TRY_LINK([#include <sys/sendfile.h>], >@@ -5629,14 +5636,12 @@ samba_cv_HAVE_SENDFILE=yes,samba_cv_HAVE_SENDFILE=no)]) > ;; > *) > ;; >- esac >- ;; >- *) >- AC_MSG_RESULT(no) >- ;; >- esac ], >- AC_MSG_RESULT(yes) >-) >+ esac >+fi >+ >+if test x$with_sendfile_support = xyes -a x"$samba_cv_HAVE_SENDFILE" != xyes ; then >+ AC_MSG_ERROR(sendfile support requested but sendfile not available ) >+fi > > ############################################ > # See if we have the Linux readahead syscall. >-- >1.7.9.5 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Flags:
metze
:
review+
Actions:
View
Attachments on
bug 8344
:
7894
| 8037