From a5cfdde558314ea8bd8b9421d0fffd9acbfb7de9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Mon, 13 Dec 2010 12:56:38 +0100 Subject: [PATCH] s3-waf: try to fix the build with snow leopard. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Guenther Autobuild-User: Günther Deschner Autobuild-Date: Mon Dec 13 15:03:08 CET 2010 on sn-devel-104 --- source3/wscript | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source3/wscript b/source3/wscript index c02f2a239dec..684461ffd0ed 100644 --- a/source3/wscript +++ b/source3/wscript @@ -317,6 +317,10 @@ return acl_get_perm_np(permset_d, perm); 'HAVE_ACL_GET_PERM_NP', headers='sys/types.h sys/acl.h', link=True, msg="Checking whether acl_get_perm_np() is available") + else: + conf.DEFINE('HAVE_NO_ACLS', 1) + conf.SET_TARGET_TYPE('acl', 'EMPTY') + conf.SET_TARGET_TYPE('attr', 'EMPTY') else: conf.DEFINE('HAVE_NO_ACLS', 1) conf.SET_TARGET_TYPE('acl', 'EMPTY') @@ -352,7 +356,7 @@ return acl_get_perm_np(permset_d, perm); default_static_modules.extend(TO_LIST('rpc_rpcecho pdb_ads')) default_shared_modules.extend(TO_LIST('charset_weird perfcount_test')) - if Options.options.with_acl_support: + if Options.options.with_acl_support and conf.CONFIG_SET('HAVE_POSIX_ACLS'): default_static_modules.extend(TO_LIST('vfs_posixacl')) if conf.CONFIG_SET('HAVE_DIRFD_DECL'): -- 2.34.1