2010-03-28 01:48:49 +03:00
#!/usr/bin/env python
2010-03-17 14:07:42 +03:00
bld.SAMBA_MODULE('auth_sam_module',
source='auth_sam.c',
subsystem='auth',
init_function='auth_sam_init',
2010-10-11 16:31:58 +04:00
deps='SAMDB auth_sam ntlm_check LIBSAMBA-HOSTCONFIG'
2010-03-17 14:07:42 +03:00
)
bld.SAMBA_MODULE('auth_anonymous',
source='auth_anonymous.c',
subsystem='auth',
init_function='auth_anonymous_init'
)
bld.SAMBA_MODULE('auth_server',
source='auth_server.c',
subsystem='auth',
init_function='auth_server_init',
2010-10-11 04:05:03 +04:00
deps='LIBSAMBA-UTIL LIBCLI_SMB CREDENTIALS_NTLM'
2010-03-17 14:07:42 +03:00
)
bld.SAMBA_MODULE('auth_winbind',
source='auth_winbind.c',
subsystem='auth',
init_function='auth_winbind_init',
2010-09-03 18:59:05 +04:00
deps='RPC_NDR_WINBIND MESSAGING LIBWBCLIENT'
2010-03-17 14:07:42 +03:00
)
bld.SAMBA_MODULE('auth_developer',
source='auth_developer.c',
subsystem='auth',
init_function='auth_developer_init'
)
bld.SAMBA_MODULE('auth_unix',
source='auth_unix.c',
subsystem='auth',
init_function='auth_unix_init',
2010-10-24 02:19:49 +04:00
deps='pam PAM_ERRORS LIBTSOCKET'
2010-03-17 14:07:42 +03:00
)
bld.SAMBA_SUBSYSTEM('PAM_ERRORS',
2010-03-28 10:46:25 +04:00
source='pam_errors.c',
2010-10-24 01:59:43 +04:00
deps='talloc'
2010-03-17 14:07:42 +03:00
)
2010-10-21 01:30:39 +04:00
bld.SAMBA_LIBRARY('auth',
source='auth.c auth_util.c auth_simple.c',
autoproto='auth_proto.h',
deps='LIBSAMBA-UTIL LIBSECURITY SAMDB CREDENTIALS UTIL_TEVENT',
private_library=True
)
2010-04-16 02:42:12 +04:00
bld.SAMBA_MODULE('auth_server_service',
source='auth_server_service.c',
2010-03-17 14:07:42 +03:00
subsystem='service',
init_function='server_service_auth_init',
2010-04-16 02:42:12 +04:00
deps='auth',
2010-03-17 12:12:16 +03:00
internal_module=True
2010-03-17 14:07:42 +03:00
)