From: Christof Schmitt Date: Fri, 11 Jan 2019 22:02:03 +0000 (-0700) Subject: wscript: Make non_posix_acls a subsystem X-Git-Tag: ldb-1.6.1~461 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=528d33963aceb137fb9fde5afa5dd5f4c4b1fac8;p=thirdparty%2Fsamba.git wscript: Make non_posix_acls a subsystem This fixes build error when building vfs_gpfs as static module: ERROR: circular library dependency between smbd_base and non_posix_acls Signed-off-by: Christof Schmitt Reviewed-by: Volker Lendecke --- diff --git a/source3/modules/wscript_build b/source3/modules/wscript_build index db083f50646..ef1d476ef6a 100644 --- a/source3/modules/wscript_build +++ b/source3/modules/wscript_build @@ -12,10 +12,9 @@ bld.SAMBA3_SUBSYSTEM('POSIXACL_XATTR', enabled=(bld.SAMBA3_IS_ENABLED_MODULE('vfs_ceph') or bld.SAMBA3_IS_ENABLED_MODULE('vfs_glusterfs')), deps='acl attr') -bld.SAMBA3_LIBRARY('non_posix_acls', +bld.SAMBA3_SUBSYSTEM('non_posix_acls', source='non_posix_acls.c', - deps='samba-util vfs', - private_library=True) + deps='samba-util vfs') bld.SAMBA3_SUBSYSTEM('VFS_VIRUSFILTER_UTILS', source='vfs_virusfilter_utils.c',