diff options
author | Andreas Schneider <asn@samba.org> | 2012-10-17 16:30:57 +0200 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2012-10-18 11:33:17 +0200 |
commit | 7786919428527f8e3b75806f5058ddd2a6ad4fab (patch) | |
tree | 688cebd46861520abf80780d4958faa7750b3cc0 | |
parent | 64886e312fe76145c2c4bc900b794274594368aa (diff) | |
download | samba-7786919428527f8e3b75806f5058ddd2a6ad4fab.tar.gz samba-7786919428527f8e3b75806f5058ddd2a6ad4fab.tar.bz2 samba-7786919428527f8e3b75806f5058ddd2a6ad4fab.zip |
BUG #9295: Build standard auth modules as internal modules.
Signed-off-by: Andreas Schneider <asn@samba.org>
-rw-r--r-- | source3/auth/wscript_build | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/source3/auth/wscript_build b/source3/auth/wscript_build index 8a535cbcbf..e518de98fd 100644 --- a/source3/auth/wscript_build +++ b/source3/auth/wscript_build @@ -40,8 +40,7 @@ bld.SAMBA3_MODULE('auth_sam', source=AUTH_SAM_SRC, deps='samba-util', init_function='', - internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_sam'), - enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_sam')) + internal_module=True) bld.SAMBA3_MODULE('auth_unix', subsystem='auth', @@ -56,8 +55,7 @@ bld.SAMBA3_MODULE('auth_winbind', source=AUTH_WINBIND_SRC, deps='samba-util', init_function='', - internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_winbind'), - enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_winbind')) + internal_module=True) bld.SAMBA3_MODULE('auth_wbc', subsystem='auth', @@ -72,16 +70,14 @@ bld.SAMBA3_MODULE('auth_domain', source=AUTH_DOMAIN_SRC, deps='RPC_CLIENT_SCHANNEL trusts_util', init_function='', - internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_domain'), - enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_domain')) + internal_module=True) bld.SAMBA3_MODULE('auth_builtin', subsystem='auth', source=AUTH_BUILTIN_SRC, deps='samba-util', init_function='', - internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_builtin'), - enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_builtin')) + internal_module=True) bld.SAMBA3_MODULE('auth_script', subsystem='auth', |