diff options
author | Björn Jacke <bj@sernet.de> | 2022-02-15 14:25:41 +0100 |
---|---|---|
committer | Jule Anger <janger@samba.org> | 2022-02-27 19:08:16 +0000 |
commit | 821e16c077c98ea4d792a4a788be68c2fbb21264 (patch) | |
tree | 3184677d9299ae6eba50649db043425ae0b070f9 /source3/wscript | |
parent | 9016cb5c64351ff267d8deb43451370d6dcbba64 (diff) | |
download | samba-821e16c077c98ea4d792a4a788be68c2fbb21264.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>
(cherry picked from commit 89e903985b6968c5becc69b757b23144b1aba66e)
Diffstat (limited to 'source3/wscript')
-rw-r--r-- | source3/wscript | 6 |
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. " |