summaryrefslogtreecommitdiff
path: root/source3/auth
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-02-09 15:56:20 +1100
committerAndrew Tridgell <tridge@samba.org>2011-02-18 16:46:41 +1100
commitc8b2b109760b366bee6dcf7c6c306936d271f508 (patch)
treef09769354164d60db9e0b237c9a8c4e0028aef2f /source3/auth
parente92922308b5636d1b23fa44f1f8aa50413d48d77 (diff)
downloadsamba-c8b2b109760b366bee6dcf7c6c306936d271f508.tar.gz
samba-c8b2b109760b366bee6dcf7c6c306936d271f508.tar.bz2
samba-c8b2b109760b366bee6dcf7c6c306936d271f508.zip
s3-waf: use SAMBA3_*() build rules in source3/build
this brings the s3 waf build much closer to the proposed s3build top level build, using the same bld.SAMBA3_*() rules There are a few renames of subsystems in here, with a 3 suffix where it would create a conflict. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/auth')
-rw-r--r--source3/auth/wscript_build22
1 files changed, 11 insertions, 11 deletions
diff --git a/source3/auth/wscript_build b/source3/auth/wscript_build
index e9010fffcb..21e8058269 100644
--- a/source3/auth/wscript_build
+++ b/source3/auth/wscript_build
@@ -18,51 +18,51 @@ AUTH_SRC = '''auth.c auth_util.c
user_krb5.c
auth_compat.c auth_ntlmssp.c'''
-bld.SAMBA_SUBSYSTEM('TOKEN_UTIL',
+bld.SAMBA3_SUBSYSTEM('TOKEN_UTIL',
source='token_util.c',
vars=locals())
-bld.SAMBA_SUBSYSTEM('auth',
+bld.SAMBA3_SUBSYSTEM('auth',
source=AUTH_SRC,
deps='''PLAINTEXT_AUTH SLCACHE DCUTIL TOKEN_UTIL''',
vars=locals())
-bld.SAMBA_MODULE('auth_sam',
+bld.SAMBA3_MODULE('auth_sam',
subsystem='auth',
source=AUTH_SAM_SRC,
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_sam'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_sam'))
-bld.SAMBA_MODULE('auth_unix',
+bld.SAMBA3_MODULE('auth_unix',
subsystem='auth',
source=AUTH_UNIX_SRC,
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_unix'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_unix'))
-bld.SAMBA_MODULE('auth_winbind',
+bld.SAMBA3_MODULE('auth_winbind',
subsystem='auth',
source=AUTH_WINBIND_SRC,
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_winbind'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_winbind'))
-bld.SAMBA_MODULE('auth_wbc',
+bld.SAMBA3_MODULE('auth_wbc',
subsystem='auth',
source=AUTH_WBC_SRC,
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_wbc'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_wbc'))
-bld.SAMBA_MODULE('auth_server',
+bld.SAMBA3_MODULE('auth_server',
subsystem='auth',
source=AUTH_SERVER_SRC,
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_server'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_server'))
-bld.SAMBA_MODULE('auth_domain',
+bld.SAMBA3_MODULE('auth_domain',
subsystem='auth',
source=AUTH_DOMAIN_SRC,
deps='RPC_CLIENT_SCHANNEL',
@@ -70,21 +70,21 @@ bld.SAMBA_MODULE('auth_domain',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_domain'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_domain'))
-bld.SAMBA_MODULE('auth_builtin',
+bld.SAMBA3_MODULE('auth_builtin',
subsystem='auth',
source=AUTH_BUILTIN_SRC,
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_builtin'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_builtin'))
-bld.SAMBA_MODULE('auth_netlogond',
+bld.SAMBA3_MODULE('auth_netlogond',
subsystem='auth',
source=AUTH_NETLOGOND_SRC,
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_netlogond'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_netlogond'))
-bld.SAMBA_MODULE('auth_script',
+bld.SAMBA3_MODULE('auth_script',
subsystem='auth',
source=AUTH_SCRIPT_SRC,
init_function='',