From f52c6eeacc1131fca6656d07eca035668423b008 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sun, 8 May 2011 14:48:11 +0200 Subject: 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 --- source3/auth/wscript_build | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source3/auth/wscript_build') 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')) -- cgit