[SCM] Samba Shared Repository - branch v3-2-test updated - initial-v3-2-test-2663-g5fb7533

Stefan Metzmacher metze at samba.org
Fri Feb 29 08:59:37 GMT 2008


The branch, v3-2-test has been updated
       via  5fb7533e37b6c682e019b1c3515dc6befc8bda09 (commit)
      from  c9b60b75b4763c37cfa63741b4f055e4ea488e92 (commit)

http://gitweb.samba.org/?samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit 5fb7533e37b6c682e019b1c3515dc6befc8bda09
Author: Stefan Metzmacher <metze at samba.org>
Date:   Fri Feb 29 09:58:37 2008 +0100

    configure: only build vfs_syncops if dirfd() is available
    
    This hopefully fixes the build on HP-UX.
    
    metze

-----------------------------------------------------------------------

Summary of changes:
 source/configure.in |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/configure.in b/source/configure.in
index 9970647..5254c8b 100644
--- a/source/configure.in
+++ b/source/configure.in
@@ -401,7 +401,7 @@ dnl These have to be built static:
 default_static_modules="pdb_smbpasswd pdb_tdbsam rpc_lsarpc rpc_samr rpc_winreg rpc_initshutdown rpc_dssetup rpc_wkssvc rpc_svcctl2 rpc_ntsvcs2 rpc_netlogon rpc_netdfs rpc_srvsvc2 rpc_spoolss rpc_eventlog2 auth_sam auth_unix auth_winbind auth_server auth_domain auth_builtin vfs_default nss_info_template"
 
 dnl These are preferably build shared, and static if dlopen() is not available
-default_shared_modules="vfs_recycle vfs_audit vfs_extd_audit vfs_full_audit vfs_netatalk vfs_fake_perms vfs_default_quota vfs_readonly vfs_cap vfs_expand_msdfs vfs_shadow_copy vfs_shadow_copy2 charset_CP850 charset_CP437 auth_script vfs_readahead vfs_syncops vfs_xattr_tdb vfs_streams_xattr"
+default_shared_modules="vfs_recycle vfs_audit vfs_extd_audit vfs_full_audit vfs_netatalk vfs_fake_perms vfs_default_quota vfs_readonly vfs_cap vfs_expand_msdfs vfs_shadow_copy vfs_shadow_copy2 charset_CP850 charset_CP437 auth_script vfs_readahead vfs_xattr_tdb vfs_streams_xattr"
 
 if test "x$developer" = xyes; then
    default_static_modules="$default_static_modules rpc_rpcecho"
@@ -860,6 +860,11 @@ if test x"$samba_cv_msghdr_msg_control" = x"yes" -o \
 	default_shared_modules="$default_shared_modules vfs_aio_fork"
 fi
 
+AC_CHECK_FUNCS(dirfd)
+if test x"$ac_cv_func_dirfd" = x"yes"; then
+	default_shared_modules="$default_shared_modules vfs_syncops"
+fi
+
 AC_CACHE_CHECK([for sig_atomic_t type],samba_cv_sig_atomic_t, [
     AC_TRY_COMPILE([
 #include <sys/types.h>


-- 
Samba Shared Repository


More information about the samba-cvs mailing list