diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/wscript_build | 9 | ||||
-rw-r--r-- | source3/wscript | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/source3/winbindd/wscript_build b/source3/winbindd/wscript_build index ddc9543b92..da0c189dc6 100644 --- a/source3/winbindd/wscript_build +++ b/source3/winbindd/wscript_build @@ -17,6 +17,7 @@ IDMAP_ADEX_SRC = '''idmap_adex/idmap_adex.c idmap_adex/provider_unified.c idmap_adex/gc_util.c idmap_adex/domain_util.c''' +IDMAP_AUTORID_SRC = '''idmap_autorid.c''' IDMAP_RW_SRC = 'idmap_rw.c' IDMAP_SRC = 'idmap.c idmap_util.c ${IDMAP_RW_SRC}' @@ -88,6 +89,14 @@ bld.SAMBA_MODULE('idmap_adex', internal_module=bld.SAMBA3_IS_STATIC_MODULE('IDMAP_ADEX'), enabled=bld.SAMBA3_IS_ENABLED_MODULE('IDMAP_ADEX')) +bld.SAMBA_MODULE('idmap_autorid', + subsystem='idmap', + source=IDMAP_AUTORID_SRC, + init_function='', + internal_module=bld.SAMBA3_IS_STATIC_MODULE('IDMAP_AUTORID'), + enabled=bld.SAMBA3_IS_ENABLED_MODULE('IDMAP_AUTORID')) + + NSS_INFO_TEMPLATE_SRC = 'nss_info_template.c' NSS_INFO_SRC = 'nss_info.c' diff --git a/source3/wscript b/source3/wscript index 5b83e23f24..5bab1a1820 100644 --- a/source3/wscript +++ b/source3/wscript @@ -334,7 +334,7 @@ return acl_get_perm_np(permset_d, perm); vfs_streams_xattr vfs_streams_depot vfs_acl_xattr vfs_acl_tdb vfs_smb_traffic_analyzer vfs_preopen vfs_catia vfs_scannedonly vfs_crossrename vfs_linux_xfs_sgid - vfs_time_audit''') + vfs_time_audit idmap_autorid''') if Options.options.developer: default_static_modules.extend(TO_LIST('rpc_rpcecho pdb_ads')) |