1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s3-waf: build shared modules as subsystems

This commit is contained in:
Kai Blin 2010-05-11 17:44:25 +02:00
parent 2650198ff7
commit 8e04ad2db1
2 changed files with 20 additions and 6 deletions

View File

@ -416,6 +416,17 @@ krb5_get_credentials_for_user krb5_get_host_realm krb5_free_host_realm''',
conf.SET_TARGET_TYPE('gssapi', 'EMPTY')
conf.SET_TARGET_TYPE('gssapi_krb5', 'EMPTY')
# FIXME: these should be tests for features, but the old build system just
# checks for OSes.
host_os = conf.env['SYSTEM_UNAME_SYSNAME'].lower()
# Python doesn't have case switches... :/
# FIXME: original was *linux* | gnu* | k*bsd*-gnu | kopensolaris*-gnu | *qnx*)
if host_os in ("linux"):
# obviously once this hook checks for more than just linux this needs to be adapted
conf.DEFINE('LINUX', '1')
conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
conf.SAMBA_CONFIG_H('include/config.h')
def ctags(ctx):

View File

@ -186,6 +186,9 @@ LIBADDNS_SRC0 = '''libaddns/dnsrecord.c libaddns/dnsutils.c libaddns/dnssock.c
LIBADDNS_SRC = '''${LIBADDNS_SRC0} ${SOCKET_WRAPPER_SRC}'''
GPEXT_STATIC = ''
GPEXT_REGISTRY_SRC = 'libgpo/gpext/registry.c'
GPEXT_SCRIPTS_SRC = 'libgpo/gpext/scripts.c'
GPEXT_SECURITY_SRC = 'libgpo/gpext/security.c'
GPEXT_SRC = '''../libgpo/gpext/gpext.c ${GPEXT_STATIC}'''
@ -493,8 +496,6 @@ VFS_ONEFS_SRC = '''modules/vfs_onefs.c modules/onefs_acl.c modules/onefs_system.
modules/onefs_open.c modules/onefs_streams.c modules/onefs_dir.c
modules/onefs_cbrl.c modules/onefs_notify.c modules/onefs_config.c'''
VFS_ONEFS_SHADOW_COPY_SRC = 'modules/vfs_onefs_shadow_copy.c modules/onefs_shadow_copy.c'
PERFCOUNT_ONEFS_SRC = 'modules/perfcount_onefs.c'
PERFCOUNT_TEST_SRC = 'modules/perfcount_test.c'
VFS_DIRSORT_SRC = 'modules/vfs_dirsort.c'
VFS_SCANNEDONLY_SRC = 'modules/vfs_scannedonly.c'
VFS_CROSSRENAME_SRC = 'modules/vfs_crossrename.c'
@ -541,6 +542,8 @@ IDMAP_ADEX_SRC = '''winbindd/idmap_adex/idmap_adex.c
winbindd/idmap_adex/domain_util.c'''
PERFCOUNT_STATIC = ''
PERFCOUNT_ONEFS_SRC = 'modules/perfcount_onefs.c'
PERFCOUNT_TEST_SRC = 'modules/perfcount_test.c'
WINBINDD_SRC1 = '''winbindd/winbindd.c
winbindd/winbindd_group.c
@ -822,8 +825,6 @@ bld.SAMBA_MKVERSION('include/version.h')
for prefix in bld.env.MODULE_PREFIXES:
static_key = "%s_STATIC" % prefix.upper()
shared_key = "%s_SHARED" % prefix.upper()
#print "static %s modules %s" % (prefix, bld.env[static_key])
#print "shared %s modules %s" % (prefix, bld.env[shared_key])
# Set up the static modules
static_src = locals()[static_key]
@ -832,10 +833,12 @@ for prefix in bld.env.MODULE_PREFIXES:
# for some reason static_src doesn't seem to be a reference, so save it
# back to the locals
locals()[static_key] = static_src
#print "%s = '%s'" % (static_key, static_src)
# Set up subsystems for the shared modules
# FIXME: implement shared modules
for module in bld.env[shared_key]:
bld.SAMBA_SUBSYSTEM(module,
source="${%s_SRC}" % module,
vars=locals())
######################## SUBSYSTEMS #################################