From 0f69bf2cc9ce8ab76afefa693f3d50e458459854 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sun, 23 Sep 2012 14:30:37 +1000 Subject: [PATCH] build: Make waf configure match autoconf for HPUX ACLs --- source3/wscript | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/wscript b/source3/wscript index dfd41c53384..cb76293a3e1 100644 --- a/source3/wscript +++ b/source3/wscript @@ -323,6 +323,7 @@ utimensat vsyslog _write __write __xstat elif (host_os.rfind('hpux') > -1): Logs.info('Using HPUX ACLs') conf.DEFINE('HAVE_HPUX_ACLS',1) + conf.DEFINE('POSIX_ACL_NEEDS_MASK',1) default_static_modules.extend(TO_LIST('vfs_hpuxacl')) elif (host_os.rfind('irix') > -1): Logs.info('Using IRIX ACLs') -- 2.11.4.GIT