From 821e16c077c98ea4d792a4a788be68c2fbb21264 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Jacke?= Date: Tue, 15 Feb 2022 14:25:41 +0100 Subject: 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 Reviewed-by: Jeremy Allison (cherry picked from commit 89e903985b6968c5becc69b757b23144b1aba66e) --- source3/wscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/wscript') 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. " -- cgit v1.2.1