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-11-07 03:52:13 +03:00
deps='samdb auth_sam ntlm_check samba-hostconfig'
2010-03-17 14:07:42 +03:00
)
bld.SAMBA_MODULE('auth_anonymous',
source='auth_anonymous.c',
subsystem='auth',
2010-11-03 10:21:34 +03:00
init_function='auth_anonymous_init',
deps='talloc'
2010-03-17 14:07:42 +03:00
)
bld.SAMBA_MODULE('auth_server',
source='auth_server.c',
subsystem='auth',
init_function='auth_server_init',
2010-10-24 21:42:58 +04:00
deps='samba-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-10-24 03:23:53 +04:00
deps='RPC_NDR_WINBIND MESSAGING wbclient'
2010-03-17 14:07:42 +03:00
)
bld.SAMBA_MODULE('auth_developer',
source='auth_developer.c',
subsystem='auth',
2010-11-03 10:21:34 +03:00
init_function='auth_developer_init',
deps='talloc'
2010-03-17 14:07:42 +03:00
)
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',
2010-10-24 02:53:52 +04:00
source='auth.c auth_util.c auth_simple.c',
autoproto='auth_proto.h',
2010-11-07 04:05:51 +03:00
deps='samba-util security samdb credentials UTIL_TEVENT',
2010-10-24 02:53:52 +04:00
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
)