diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-03-18 11:52:50 +0000 |
---|---|---|
committer | Christian Ambach <ambi@samba.org> | 2013-03-21 16:31:19 +0100 |
commit | 1f139ae2d162ebb045ce4eabb76a138baedfe44a (patch) | |
tree | 2ea2579eaa3487164528d5056a2b7961d7ec8af4 /source3/modules/wscript_build | |
parent | 599a699adec1f8f0a432d9c34f378d48930ca29b (diff) | |
download | samba-1f139ae2d162ebb045ce4eabb76a138baedfe44a.tar.gz samba-1f139ae2d162ebb045ce4eabb76a138baedfe44a.tar.bz2 samba-1f139ae2d162ebb045ce4eabb76a138baedfe44a.zip |
s3:waf fix build on AIX
AIX acl code needs to be built by default on AIX,
otherwise smbd will fail to start because of missing symbols
This fixes Bug 9557 - build succeeds, but binaries don't run
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Christian Ambach <ambi@samba.org>
Autobuild-User(master): Christian Ambach <ambi@samba.org>
Autobuild-Date(master): Thu Mar 21 16:31:19 CET 2013 on sn-devel-104
Diffstat (limited to 'source3/modules/wscript_build')
-rw-r--r-- | source3/modules/wscript_build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/wscript_build b/source3/modules/wscript_build index ef5748ceef..8f08d52c03 100644 --- a/source3/modules/wscript_build +++ b/source3/modules/wscript_build @@ -63,7 +63,7 @@ bld.SAMBA3_LIBRARY('non_posix_acls', bld.SAMBA3_SUBSYSTEM('VFS_AIXACL_UTIL', source='vfs_aixacl_util.c', - enabled=False) #fixme + enabled=(bld.SAMBA3_IS_ENABLED_MODULE('vfs_aixacl') or bld.SAMBA3_IS_ENABLED_MODULE('vfs_aixacl2'))) bld.SAMBA3_SUBSYSTEM('vfs', source='', |