mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
r147: - Remove dublicate ldap tests (richard the current test is in libads/config.m4 :-)
- Move sendfile check to ntvfs/config.m4
- Move comparison_fn_t check to build/m4/rewrite.m4
Please do not new tests to configure.in directly,
please add them to the subsystems config.m4 file where they belong to or
to build/m4/rewrite.m4 if you don't know where to put it for now
Thanks
I know samba4's build system is not completly rewritten.
I have a lot of updatest in my local tree, but it's not complete yet
when it's complete I'll write documentation for it:-)
metze
(This used to be commit 31c23f14d6
)
This commit is contained in:
parent
b65824f3f6
commit
91b30df39b
@ -1632,3 +1632,20 @@ if test x"$samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT" = x"yes"; then
|
||||
AC_DEFINE(HAVE_EXPLICIT_LARGEFILE_SUPPORT,1,[Whether large file support can be enabled])
|
||||
fi
|
||||
AC_MSG_RESULT([$samba_cv_HAVE_EXPLICIT_LARGEFILE_SUPPORT])
|
||||
|
||||
#######################################
|
||||
# Check for comparison_fn_t
|
||||
AC_CACHE_CHECK([for comparison_fn_t],samba_cv_HAVE_COMPARISON_FN_T,[
|
||||
AC_TRY_COMPILE([
|
||||
#include <stdlib.h>
|
||||
int list_find(const void *needle,
|
||||
const void *base, size_t nmemb, size_t size, comparison_fn_t comp_fn)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
],[],
|
||||
samba_cv_HAVE_COMPARISON_FN_T=yes,samba_cv_HAVE_COMPARISON_FN_T=no)
|
||||
])
|
||||
if test x"$samba_cv_HAVE_COMPARISON_FN_T" = x"yes"; then
|
||||
AC_DEFINE(HAVE_COMPARISON_FN_T,1,[Whether or not we have comparison_fn_t])
|
||||
fi
|
||||
|
@ -213,341 +213,6 @@ sinclude(rpc_server/config.m4)
|
||||
sinclude(lib/registry/config.m4)
|
||||
sinclude(torture/config.m4)
|
||||
|
||||
#######################################
|
||||
# Check for comparison_fn_t
|
||||
AC_CACHE_CHECK([for comparison_fn_t],samba_cv_HAVE_COMPARISON_FN_T,[
|
||||
AC_TRY_COMPILE([
|
||||
#include <stdlib.h>
|
||||
int list_find(const void *needle,
|
||||
const void *base, size_t nmemb, size_t size, comparison_fn_t comp_fn)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
],[],
|
||||
samba_cv_HAVE_COMPARISON_FN_T=yes,samba_cv_HAVE_COMPARISON_FN_T=no)
|
||||
])
|
||||
if test x"$samba_cv_HAVE_COMPARISON_FN_T" = x"yes"; then
|
||||
AC_DEFINE(HAVE_COMPARISON_FN_T,1,[Whether or not we have comparison_fn_t])
|
||||
fi
|
||||
|
||||
########################################################
|
||||
# Compile with LDAP support?
|
||||
|
||||
with_ldap_support=auto
|
||||
AC_MSG_CHECKING([for LDAP support])
|
||||
|
||||
AC_ARG_WITH(ldap,
|
||||
[ --with-ldap LDAP support (default yes)],
|
||||
[ case "$withval" in
|
||||
yes|no)
|
||||
with_ldap_support=$withval
|
||||
;;
|
||||
esac ])
|
||||
|
||||
AC_MSG_RESULT($with_ldap_support)
|
||||
|
||||
SMBLDAP=""
|
||||
AC_SUBST(SMBLDAP)
|
||||
if test x"$with_ldap_support" != x"no"; then
|
||||
|
||||
##################################################################
|
||||
# first test for ldap.h and lber.h
|
||||
# (ldap.h is required for this test)
|
||||
AC_CHECK_HEADERS(ldap.h lber.h)
|
||||
|
||||
if test x"$ac_cv_header_ldap_h" != x"yes"; then
|
||||
if test x"$with_ldap_support" = x"yes"; then
|
||||
AC_MSG_ERROR(ldap.h is needed for LDAP support)
|
||||
else
|
||||
AC_MSG_WARN(ldap.h is needed for LDAP support)
|
||||
fi
|
||||
|
||||
with_ldap_support=no
|
||||
fi
|
||||
fi
|
||||
|
||||
if test x"$with_ldap_support" != x"no"; then
|
||||
ac_save_LIBS=$LIBS
|
||||
|
||||
##################################################################
|
||||
# we might need the lber lib on some systems. To avoid link errors
|
||||
# this test must be before the libldap test
|
||||
AC_CHECK_LIB_EXT(lber, LDAP_LIBS, ber_scanf)
|
||||
|
||||
########################################################
|
||||
# now see if we can find the ldap libs in standard paths
|
||||
AC_CHECK_LIB_EXT(ldap, LDAP_LIBS, ldap_init)
|
||||
|
||||
AC_CHECK_FUNC_EXT(ldap_domain2hostlist,$LDAP_LIBS)
|
||||
|
||||
########################################################
|
||||
# If we have LDAP, does it's rebind procedure take 2 or 3 arguments?
|
||||
# Check found in pam_ldap 145.
|
||||
AC_CHECK_FUNC_EXT(ldap_set_rebind_proc,$LDAP_LIBS)
|
||||
|
||||
LIBS="$LIBS $LDAP_LIBS"
|
||||
AC_CACHE_CHECK(whether ldap_set_rebind_proc takes 3 arguments, smb_ldap_cv_ldap_set_rebind_proc, [
|
||||
AC_TRY_COMPILE([
|
||||
#include <lber.h>
|
||||
#include <ldap.h>],
|
||||
[ldap_set_rebind_proc(0, 0, 0);],
|
||||
[smb_ldap_cv_ldap_set_rebind_proc=3],
|
||||
[smb_ldap_cv_ldap_set_rebind_proc=2]
|
||||
)
|
||||
])
|
||||
|
||||
AC_DEFINE_UNQUOTED(LDAP_SET_REBIND_PROC_ARGS, $smb_ldap_cv_ldap_set_rebind_proc, [Number of arguments to ldap_set_rebind_proc])
|
||||
|
||||
AC_CHECK_FUNC_EXT(ldap_initialize,$LDAP_LIBS)
|
||||
|
||||
if test x"$ac_cv_lib_ext_ldap_ldap_init" = x"yes" -a x"$ac_cv_func_ext_ldap_domain2hostlist" = x"yes"; then
|
||||
AC_DEFINE(HAVE_LDAP,1,[Whether ldap is available])
|
||||
default_static_modules="$default_static_modules pdb_ldap idmap_ldap";
|
||||
SMBLDAP="lib/smbldap.o"
|
||||
with_ldap_support=yes
|
||||
AC_MSG_CHECKING(whether LDAP support is used)
|
||||
AC_MSG_RESULT(yes)
|
||||
else
|
||||
if test x"$with_ldap_support" = x"yes"; then
|
||||
AC_MSG_ERROR(libldap is needed for LDAP support)
|
||||
else
|
||||
AC_MSG_WARN(libldap is needed for LDAP support)
|
||||
fi
|
||||
|
||||
LDAP_LIBS=""
|
||||
with_ldap_support=no
|
||||
fi
|
||||
LIBS=$ac_save_LIBS
|
||||
fi
|
||||
|
||||
#################################################
|
||||
# check for sendfile support
|
||||
|
||||
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=yes)],
|
||||
[ case "$withval" in
|
||||
yes)
|
||||
|
||||
AC_MSG_RESULT(yes);
|
||||
|
||||
case "$host_os" in
|
||||
*linux*)
|
||||
AC_CACHE_CHECK([for linux sendfile64 support],samba_cv_HAVE_SENDFILE64,[
|
||||
AC_TRY_LINK([#include <sys/sendfile.h>],
|
||||
[\
|
||||
int tofd, fromfd;
|
||||
off64_t offset;
|
||||
size_t total;
|
||||
ssize_t nwritten = sendfile64(tofd, fromfd, &offset, total);
|
||||
],
|
||||
samba_cv_HAVE_SENDFILE64=yes,samba_cv_HAVE_SENDFILE64=no)])
|
||||
|
||||
AC_CACHE_CHECK([for linux sendfile support],samba_cv_HAVE_SENDFILE,[
|
||||
AC_TRY_LINK([#include <sys/sendfile.h>],
|
||||
[\
|
||||
int tofd, fromfd;
|
||||
off_t offset;
|
||||
size_t total;
|
||||
ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
|
||||
],
|
||||
samba_cv_HAVE_SENDFILE=yes,samba_cv_HAVE_SENDFILE=no)])
|
||||
|
||||
# Try and cope with broken Linux sendfile....
|
||||
AC_CACHE_CHECK([for broken linux sendfile support],samba_cv_HAVE_BROKEN_LINUX_SENDFILE,[
|
||||
AC_TRY_LINK([\
|
||||
#if defined(_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
|
||||
#undef _FILE_OFFSET_BITS
|
||||
#endif
|
||||
#include <sys/sendfile.h>],
|
||||
[\
|
||||
int tofd, fromfd;
|
||||
off_t offset;
|
||||
size_t total;
|
||||
ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
|
||||
],
|
||||
samba_cv_HAVE_BROKEN_LINUX_SENDFILE=yes,samba_cv_HAVE_BROKEN_LINUX_SENDFILE=no)])
|
||||
|
||||
if test x"$samba_cv_HAVE_SENDFILE64" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SENDFILE64,1,[Whether 64-bit sendfile() is available])
|
||||
AC_DEFINE(LINUX_SENDFILE_API,1,[Whether linux sendfile() API is available])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() should be used])
|
||||
elif test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SENDFILE,1,[Whether sendfile() is available])
|
||||
AC_DEFINE(LINUX_SENDFILE_API,1,[Whether linux sendfile() API is available])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() should be used])
|
||||
elif test x"$samba_cv_HAVE_BROKEN_LINUX_SENDFILE" = x"yes"; then
|
||||
AC_DEFINE(LINUX_BROKEN_SENDFILE_API,1,[Whether (linux) sendfile() is broken])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile should be used])
|
||||
else
|
||||
AC_MSG_RESULT(no);
|
||||
fi
|
||||
|
||||
;;
|
||||
*freebsd*)
|
||||
AC_CACHE_CHECK([for freebsd sendfile support],samba_cv_HAVE_SENDFILE,[
|
||||
AC_TRY_LINK([\
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/uio.h>],
|
||||
[\
|
||||
int fromfd, tofd, ret, total=0;
|
||||
off_t offset, nwritten;
|
||||
struct sf_hdtr hdr;
|
||||
struct iovec hdtrl;
|
||||
hdr.headers = &hdtrl;
|
||||
hdr.hdr_cnt = 1;
|
||||
hdr.trailers = NULL;
|
||||
hdr.trl_cnt = 0;
|
||||
hdtrl.iov_base = NULL;
|
||||
hdtrl.iov_len = 0;
|
||||
ret = sendfile(fromfd, tofd, offset, total, &hdr, &nwritten, 0);
|
||||
],
|
||||
samba_cv_HAVE_SENDFILE=yes,samba_cv_HAVE_SENDFILE=no)])
|
||||
|
||||
if test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SENDFILE,1,[Whether sendfile() support is available])
|
||||
AC_DEFINE(FREEBSD_SENDFILE_API,1,[Whether the FreeBSD sendfile() API is available])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
|
||||
else
|
||||
AC_MSG_RESULT(no);
|
||||
fi
|
||||
;;
|
||||
|
||||
*hpux*)
|
||||
AC_CACHE_CHECK([for hpux sendfile64 support],samba_cv_HAVE_SENDFILE64,[
|
||||
AC_TRY_LINK([\
|
||||
#include <sys/socket.h>
|
||||
#include <sys/uio.h>],
|
||||
[\
|
||||
int fromfd, tofd;
|
||||
size_t total=0;
|
||||
struct iovec hdtrl[2];
|
||||
ssize_t nwritten;
|
||||
off64_t offset;
|
||||
|
||||
hdtrl[0].iov_base = 0;
|
||||
hdtrl[0].iov_len = 0;
|
||||
|
||||
nwritten = sendfile64(tofd, fromfd, offset, total, &hdtrl[0], 0);
|
||||
],
|
||||
samba_cv_HAVE_SENDFILE64=yes,samba_cv_HAVE_SENDFILE64=no)])
|
||||
if test x"$samba_cv_HAVE_SENDFILE64" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SENDFILE64,1,[Whether sendfile64() is available])
|
||||
AC_DEFINE(HPUX_SENDFILE_API,1,[Whether the hpux sendfile() API is available])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
|
||||
else
|
||||
AC_MSG_RESULT(no);
|
||||
fi
|
||||
|
||||
AC_CACHE_CHECK([for hpux sendfile support],samba_cv_HAVE_SENDFILE,[
|
||||
AC_TRY_LINK([\
|
||||
#include <sys/socket.h>
|
||||
#include <sys/uio.h>],
|
||||
[\
|
||||
int fromfd, tofd;
|
||||
size_t total=0;
|
||||
struct iovec hdtrl[2];
|
||||
ssize_t nwritten;
|
||||
off_t offset;
|
||||
|
||||
hdtrl[0].iov_base = 0;
|
||||
hdtrl[0].iov_len = 0;
|
||||
|
||||
nwritten = sendfile(tofd, fromfd, offset, total, &hdtrl[0], 0);
|
||||
],
|
||||
samba_cv_HAVE_SENDFILE=yes,samba_cv_HAVE_SENDFILE=no)])
|
||||
if test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SENDFILE,1,[Whether sendfile() is available])
|
||||
AC_DEFINE(HPUX_SENDFILE_API,1,[Whether the hpux sendfile() API is available])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
|
||||
else
|
||||
AC_MSG_RESULT(no);
|
||||
fi
|
||||
;;
|
||||
|
||||
*solaris*)
|
||||
AC_CHECK_LIB(sendfile,sendfilev)
|
||||
AC_CACHE_CHECK([for solaris sendfilev64 support],samba_cv_HAVE_SENDFILEV64,[
|
||||
AC_TRY_LINK([\
|
||||
#include <sys/sendfile.h>],
|
||||
[\
|
||||
int sfvcnt;
|
||||
size_t xferred;
|
||||
struct sendfilevec vec[2];
|
||||
ssize_t nwritten;
|
||||
int tofd;
|
||||
|
||||
sfvcnt = 2;
|
||||
|
||||
vec[0].sfv_fd = SFV_FD_SELF;
|
||||
vec[0].sfv_flag = 0;
|
||||
vec[0].sfv_off = 0;
|
||||
vec[0].sfv_len = 0;
|
||||
|
||||
vec[1].sfv_fd = 0;
|
||||
vec[1].sfv_flag = 0;
|
||||
vec[1].sfv_off = 0;
|
||||
vec[1].sfv_len = 0;
|
||||
nwritten = sendfilev64(tofd, vec, sfvcnt, &xferred);
|
||||
],
|
||||
samba_cv_HAVE_SENDFILEV64=yes,samba_cv_HAVE_SENDFILEV64=no)])
|
||||
|
||||
if test x"$samba_cv_HAVE_SENDFILEV64" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SENDFILEV64,1,[Whether sendfilev64() is available])
|
||||
AC_DEFINE(SOLARIS_SENDFILE_API,1,[Whether the soloris sendfile() API is available])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
|
||||
else
|
||||
AC_MSG_RESULT(no);
|
||||
fi
|
||||
|
||||
AC_CACHE_CHECK([for solaris sendfilev support],samba_cv_HAVE_SENDFILEV,[
|
||||
AC_TRY_LINK([\
|
||||
#include <sys/sendfile.h>],
|
||||
[\
|
||||
int sfvcnt;
|
||||
size_t xferred;
|
||||
struct sendfilevec vec[2];
|
||||
ssize_t nwritten;
|
||||
int tofd;
|
||||
|
||||
sfvcnt = 2;
|
||||
|
||||
vec[0].sfv_fd = SFV_FD_SELF;
|
||||
vec[0].sfv_flag = 0;
|
||||
vec[0].sfv_off = 0;
|
||||
vec[0].sfv_len = 0;
|
||||
|
||||
vec[1].sfv_fd = 0;
|
||||
vec[1].sfv_flag = 0;
|
||||
vec[1].sfv_off = 0;
|
||||
vec[1].sfv_len = 0;
|
||||
nwritten = sendfilev(tofd, vec, sfvcnt, &xferred);
|
||||
],
|
||||
samba_cv_HAVE_SENDFILEV=yes,samba_cv_HAVE_SENDFILEV=no)])
|
||||
|
||||
if test x"$samba_cv_HAVE_SENDFILEV" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SENDFILEV,1,[Whether sendfilev() is available])
|
||||
AC_DEFINE(SOLARIS_SENDFILE_API,1,[Whether the solaris sendfile() API is available])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether to include sendfile() support])
|
||||
else
|
||||
AC_MSG_RESULT(no);
|
||||
fi
|
||||
;;
|
||||
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
*)
|
||||
AC_MSG_RESULT(no)
|
||||
;;
|
||||
esac ],
|
||||
AC_MSG_RESULT(yes)
|
||||
)
|
||||
|
||||
AC_DEFINE_UNQUOTED(STRING_STATIC_MODULES, "$string_static_modules", [String list of builtin modules])
|
||||
|
||||
#################################################
|
||||
|
@ -1,7 +1,17 @@
|
||||
|
||||
SMB_MODULE(libldb_tdb,LIBLDB,STATIC,
|
||||
[lib/ldb/ldb_tdb/ldb_tdb.o \
|
||||
lib/ldb/ldb_tdb/ldb_pack.o \
|
||||
lib/ldb/ldb_tdb/ldb_search.o \
|
||||
lib/ldb/ldb_tdb/ldb_index.o \
|
||||
lib/ldb/ldb_tdb/ldb_match.o])
|
||||
|
||||
if test x"$with_ldap_support" = x"yes"; then
|
||||
SMB_MODULE_DEFAULT(libldb_ldap,STATIC)
|
||||
fi
|
||||
SMB_MODULE(libldb_ldap,LIBLDB,NOT,[lib/ldb/ldb_ldap/ldb_ldap.o])
|
||||
|
||||
SMB_SUBSYSTEM(LIBLDB,[lib/ldb/common/ldb.o],
|
||||
[lib/ldb/ldb_tdb/ldb_pack.o \
|
||||
lib/ldb/common/ldb_ldif.o lib/ldb/ldb_tdb/ldb_search.o \
|
||||
lib/ldb/common/ldb_parse.o lib/ldb/ldb_tdb/ldb_tdb.o \
|
||||
lib/ldb/common/util.o lib/ldb/ldb_ldap/ldb_ldap.o \
|
||||
lib/ldb/ldb_tdb/ldb_index.o lib/ldb/ldb_tdb/ldb_match.o],
|
||||
lib/ldb/include/ldb.h)
|
||||
[lib/ldb/common/ldb_ldif.o \
|
||||
lib/ldb/common/ldb_parse.o \
|
||||
lib/ldb/common/util.o])
|
||||
|
@ -5,7 +5,7 @@ struct ltdb_private {
|
||||
unsigned int connect_flags;
|
||||
};
|
||||
|
||||
|
||||
#ifdef STANDALONE
|
||||
#define IVAL(p, ofs) (((unsigned *)((char *)(p) + (ofs)))[0])
|
||||
#define SIVAL(p, ofs, v) do { IVAL(p, ofs) = (v); } while (0)
|
||||
|
||||
#endif
|
||||
|
@ -1,5 +1,235 @@
|
||||
dnl # NTVFS Server subsystem
|
||||
|
||||
#################################################
|
||||
# check for sendfile support
|
||||
|
||||
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=yes)],
|
||||
[ case "$withval" in
|
||||
yes)
|
||||
|
||||
AC_MSG_RESULT(yes);
|
||||
|
||||
case "$host_os" in
|
||||
*linux*)
|
||||
AC_CACHE_CHECK([for linux sendfile64 support],samba_cv_HAVE_SENDFILE64,[
|
||||
AC_TRY_LINK([#include <sys/sendfile.h>],
|
||||
[\
|
||||
int tofd, fromfd;
|
||||
off64_t offset;
|
||||
size_t total;
|
||||
ssize_t nwritten = sendfile64(tofd, fromfd, &offset, total);
|
||||
],
|
||||
samba_cv_HAVE_SENDFILE64=yes,samba_cv_HAVE_SENDFILE64=no)])
|
||||
|
||||
AC_CACHE_CHECK([for linux sendfile support],samba_cv_HAVE_SENDFILE,[
|
||||
AC_TRY_LINK([#include <sys/sendfile.h>],
|
||||
[\
|
||||
int tofd, fromfd;
|
||||
off_t offset;
|
||||
size_t total;
|
||||
ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
|
||||
],
|
||||
samba_cv_HAVE_SENDFILE=yes,samba_cv_HAVE_SENDFILE=no)])
|
||||
|
||||
# Try and cope with broken Linux sendfile....
|
||||
AC_CACHE_CHECK([for broken linux sendfile support],samba_cv_HAVE_BROKEN_LINUX_SENDFILE,[
|
||||
AC_TRY_LINK([\
|
||||
#if defined(_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
|
||||
#undef _FILE_OFFSET_BITS
|
||||
#endif
|
||||
#include <sys/sendfile.h>],
|
||||
[\
|
||||
int tofd, fromfd;
|
||||
off_t offset;
|
||||
size_t total;
|
||||
ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
|
||||
],
|
||||
samba_cv_HAVE_BROKEN_LINUX_SENDFILE=yes,samba_cv_HAVE_BROKEN_LINUX_SENDFILE=no)])
|
||||
|
||||
if test x"$samba_cv_HAVE_SENDFILE64" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SENDFILE64,1,[Whether 64-bit sendfile() is available])
|
||||
AC_DEFINE(LINUX_SENDFILE_API,1,[Whether linux sendfile() API is available])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() should be used])
|
||||
elif test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SENDFILE,1,[Whether sendfile() is available])
|
||||
AC_DEFINE(LINUX_SENDFILE_API,1,[Whether linux sendfile() API is available])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() should be used])
|
||||
elif test x"$samba_cv_HAVE_BROKEN_LINUX_SENDFILE" = x"yes"; then
|
||||
AC_DEFINE(LINUX_BROKEN_SENDFILE_API,1,[Whether (linux) sendfile() is broken])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile should be used])
|
||||
else
|
||||
AC_MSG_RESULT(no);
|
||||
fi
|
||||
|
||||
;;
|
||||
*freebsd*)
|
||||
AC_CACHE_CHECK([for freebsd sendfile support],samba_cv_HAVE_SENDFILE,[
|
||||
AC_TRY_LINK([\
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/uio.h>],
|
||||
[\
|
||||
int fromfd, tofd, ret, total=0;
|
||||
off_t offset, nwritten;
|
||||
struct sf_hdtr hdr;
|
||||
struct iovec hdtrl;
|
||||
hdr.headers = &hdtrl;
|
||||
hdr.hdr_cnt = 1;
|
||||
hdr.trailers = NULL;
|
||||
hdr.trl_cnt = 0;
|
||||
hdtrl.iov_base = NULL;
|
||||
hdtrl.iov_len = 0;
|
||||
ret = sendfile(fromfd, tofd, offset, total, &hdr, &nwritten, 0);
|
||||
],
|
||||
samba_cv_HAVE_SENDFILE=yes,samba_cv_HAVE_SENDFILE=no)])
|
||||
|
||||
if test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SENDFILE,1,[Whether sendfile() support is available])
|
||||
AC_DEFINE(FREEBSD_SENDFILE_API,1,[Whether the FreeBSD sendfile() API is available])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
|
||||
else
|
||||
AC_MSG_RESULT(no);
|
||||
fi
|
||||
;;
|
||||
|
||||
*hpux*)
|
||||
AC_CACHE_CHECK([for hpux sendfile64 support],samba_cv_HAVE_SENDFILE64,[
|
||||
AC_TRY_LINK([\
|
||||
#include <sys/socket.h>
|
||||
#include <sys/uio.h>],
|
||||
[\
|
||||
int fromfd, tofd;
|
||||
size_t total=0;
|
||||
struct iovec hdtrl[2];
|
||||
ssize_t nwritten;
|
||||
off64_t offset;
|
||||
|
||||
hdtrl[0].iov_base = 0;
|
||||
hdtrl[0].iov_len = 0;
|
||||
|
||||
nwritten = sendfile64(tofd, fromfd, offset, total, &hdtrl[0], 0);
|
||||
],
|
||||
samba_cv_HAVE_SENDFILE64=yes,samba_cv_HAVE_SENDFILE64=no)])
|
||||
if test x"$samba_cv_HAVE_SENDFILE64" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SENDFILE64,1,[Whether sendfile64() is available])
|
||||
AC_DEFINE(HPUX_SENDFILE_API,1,[Whether the hpux sendfile() API is available])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
|
||||
else
|
||||
AC_MSG_RESULT(no);
|
||||
fi
|
||||
|
||||
AC_CACHE_CHECK([for hpux sendfile support],samba_cv_HAVE_SENDFILE,[
|
||||
AC_TRY_LINK([\
|
||||
#include <sys/socket.h>
|
||||
#include <sys/uio.h>],
|
||||
[\
|
||||
int fromfd, tofd;
|
||||
size_t total=0;
|
||||
struct iovec hdtrl[2];
|
||||
ssize_t nwritten;
|
||||
off_t offset;
|
||||
|
||||
hdtrl[0].iov_base = 0;
|
||||
hdtrl[0].iov_len = 0;
|
||||
|
||||
nwritten = sendfile(tofd, fromfd, offset, total, &hdtrl[0], 0);
|
||||
],
|
||||
samba_cv_HAVE_SENDFILE=yes,samba_cv_HAVE_SENDFILE=no)])
|
||||
if test x"$samba_cv_HAVE_SENDFILE" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SENDFILE,1,[Whether sendfile() is available])
|
||||
AC_DEFINE(HPUX_SENDFILE_API,1,[Whether the hpux sendfile() API is available])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
|
||||
else
|
||||
AC_MSG_RESULT(no);
|
||||
fi
|
||||
;;
|
||||
|
||||
*solaris*)
|
||||
AC_CHECK_LIB(sendfile,sendfilev)
|
||||
AC_CACHE_CHECK([for solaris sendfilev64 support],samba_cv_HAVE_SENDFILEV64,[
|
||||
AC_TRY_LINK([\
|
||||
#include <sys/sendfile.h>],
|
||||
[\
|
||||
int sfvcnt;
|
||||
size_t xferred;
|
||||
struct sendfilevec vec[2];
|
||||
ssize_t nwritten;
|
||||
int tofd;
|
||||
|
||||
sfvcnt = 2;
|
||||
|
||||
vec[0].sfv_fd = SFV_FD_SELF;
|
||||
vec[0].sfv_flag = 0;
|
||||
vec[0].sfv_off = 0;
|
||||
vec[0].sfv_len = 0;
|
||||
|
||||
vec[1].sfv_fd = 0;
|
||||
vec[1].sfv_flag = 0;
|
||||
vec[1].sfv_off = 0;
|
||||
vec[1].sfv_len = 0;
|
||||
nwritten = sendfilev64(tofd, vec, sfvcnt, &xferred);
|
||||
],
|
||||
samba_cv_HAVE_SENDFILEV64=yes,samba_cv_HAVE_SENDFILEV64=no)])
|
||||
|
||||
if test x"$samba_cv_HAVE_SENDFILEV64" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SENDFILEV64,1,[Whether sendfilev64() is available])
|
||||
AC_DEFINE(SOLARIS_SENDFILE_API,1,[Whether the soloris sendfile() API is available])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether sendfile() support should be included])
|
||||
else
|
||||
AC_MSG_RESULT(no);
|
||||
fi
|
||||
|
||||
AC_CACHE_CHECK([for solaris sendfilev support],samba_cv_HAVE_SENDFILEV,[
|
||||
AC_TRY_LINK([\
|
||||
#include <sys/sendfile.h>],
|
||||
[\
|
||||
int sfvcnt;
|
||||
size_t xferred;
|
||||
struct sendfilevec vec[2];
|
||||
ssize_t nwritten;
|
||||
int tofd;
|
||||
|
||||
sfvcnt = 2;
|
||||
|
||||
vec[0].sfv_fd = SFV_FD_SELF;
|
||||
vec[0].sfv_flag = 0;
|
||||
vec[0].sfv_off = 0;
|
||||
vec[0].sfv_len = 0;
|
||||
|
||||
vec[1].sfv_fd = 0;
|
||||
vec[1].sfv_flag = 0;
|
||||
vec[1].sfv_off = 0;
|
||||
vec[1].sfv_len = 0;
|
||||
nwritten = sendfilev(tofd, vec, sfvcnt, &xferred);
|
||||
],
|
||||
samba_cv_HAVE_SENDFILEV=yes,samba_cv_HAVE_SENDFILEV=no)])
|
||||
|
||||
if test x"$samba_cv_HAVE_SENDFILEV" = x"yes"; then
|
||||
AC_DEFINE(HAVE_SENDFILEV,1,[Whether sendfilev() is available])
|
||||
AC_DEFINE(SOLARIS_SENDFILE_API,1,[Whether the solaris sendfile() API is available])
|
||||
AC_DEFINE(WITH_SENDFILE,1,[Whether to include sendfile() support])
|
||||
else
|
||||
AC_MSG_RESULT(no);
|
||||
fi
|
||||
;;
|
||||
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
*)
|
||||
AC_MSG_RESULT(no)
|
||||
;;
|
||||
esac ],
|
||||
AC_MSG_RESULT(yes)
|
||||
)
|
||||
# end check for sendfile support
|
||||
#################################################
|
||||
|
||||
SMB_MODULE(ntvfs_cifs, NTVFS, STATIC, [ntvfs/cifs/vfs_cifs.o])
|
||||
|
||||
SMB_MODULE(ntvfs_simple, NTVFS, STATIC,
|
||||
|
Loading…
Reference in New Issue
Block a user