summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2022-02-15 14:25:41 +0100
committerJeremy Allison <jra@samba.org>2022-02-18 22:17:33 +0000
commit89e903985b6968c5becc69b757b23144b1aba66e (patch)
tree7f0b800b3eb1f8710de15b7f01e7c038be4b78ca /source3
parent396c17160c19c6df43123074bf62268c6ed0f9e4 (diff)
downloadsamba-89e903985b6968c5becc69b757b23144b1aba66e.tar.gz
wscript: s/default/required/ _static_modules for the acl modules
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14974 Signed-off-by: Bjoern Jacke <bjacke@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/wscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/wscript b/source3/wscript
index 8eb4b0e04ca..dd91df2dc51 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -485,11 +485,11 @@ vsyslog
Logs.info('Using HPUX ACLs')
conf.DEFINE('HAVE_HPUX_ACLS',1)
conf.DEFINE('POSIX_ACL_NEEDS_MASK',1)
- default_static_modules.extend(['vfs_hpuxacl'])
+ required_static_modules.extend(['vfs_hpuxacl'])
elif (host_os.rfind('aix') > -1):
Logs.info('Using AIX ACLs')
conf.DEFINE('HAVE_AIX_ACLS',1)
- default_static_modules.extend(['vfs_aixacl', 'vfs_aixacl2'])
+ required_static_modules.extend(['vfs_aixacl', 'vfs_aixacl2'])
elif (host_os.rfind('darwin') > -1):
Logs.warn('ACLs on Darwin currently not supported')
conf.fatal("ACL support not available on Darwin/MacOS. "
@@ -522,7 +522,7 @@ return acl_get_perm_np(permset_d, perm);
elif conf.CHECK_FUNCS_IN(['facl'], 'sec'):
Logs.info('Using solaris or UnixWare ACLs')
conf.DEFINE('HAVE_SOLARIS_UNIXWARE_ACLS',1)
- default_static_modules.extend(['vfs_solarisacl'])
+ required_static_modules.extend(['vfs_solarisacl'])
else:
conf.fatal("ACL support not found. Try installing libacl1-dev "
"or libacl-devel. "