diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-05-08 14:48:11 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-05-08 19:00:28 +0200 |
commit | f52c6eeacc1131fca6656d07eca035668423b008 (patch) | |
tree | 33da57c9eac0f4f9eeaa2bd9ff734d265f2aba51 /source3/auth/wscript_build | |
parent | a47c7f6b4cfc8ce271cfd5addbf8f901d9ab3c6e (diff) | |
download | samba-f52c6eeacc1131fca6656d07eca035668423b008.tar.gz samba-f52c6eeacc1131fca6656d07eca035668423b008.tar.bz2 samba-f52c6eeacc1131fca6656d07eca035668423b008.zip |
s3-auth Add auth_samba4 module
This module makes a direct call into the Samba4 auth stack to
authenticate Samba4 uses in a Samba3 file server. The direct call
avoids the need to obtain schannel credentials.
Andrew Bartlett
Pair-Programmed-With: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source3/auth/wscript_build')
-rw-r--r-- | source3/auth/wscript_build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/auth/wscript_build b/source3/auth/wscript_build index 8bf2051526..dc59c87c60 100644 --- a/source3/auth/wscript_build +++ b/source3/auth/wscript_build @@ -96,3 +96,12 @@ bld.SAMBA3_MODULE('auth_script', init_function='', internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_script'), enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_script')) + +bld.SAMBA3_MODULE('auth_samba4', + subsystem='auth', + source='auth_samba4.c', + init_function='', + deps='auth4', + allow_undefined_symbols=False, + internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_samba4'), + enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_samba4')) |