2010-03-28 01:48:49 +03:00
#!/usr/bin/env python
2011-02-15 08:30:35 +03:00
bld.SAMBA_MODULE('auth4_sam_module',
2010-03-17 14:07:42 +03:00
source='auth_sam.c',
2011-02-15 08:30:35 +03:00
subsystem='auth4',
2011-05-07 10:14:06 +04:00
init_function='auth4_sam_init',
2012-06-07 08:19:43 +04:00
deps='samdb auth4_sam NTLMSSP_COMMON samba-hostconfig RPC_NDR_IRPC MESSAGING'
2010-03-17 14:07:42 +03:00
)
2011-02-15 08:30:35 +03:00
bld.SAMBA_MODULE('auth4_anonymous',
2010-03-17 14:07:42 +03:00
source='auth_anonymous.c',
2011-02-15 08:30:35 +03:00
subsystem='auth4',
2011-05-07 10:14:06 +04:00
init_function='auth4_anonymous_init',
2010-11-03 10:21:34 +03:00
deps='talloc'
2010-03-17 14:07:42 +03:00
)
2011-02-15 08:30:35 +03:00
bld.SAMBA_MODULE('auth4_winbind',
2010-03-17 14:07:42 +03:00
source='auth_winbind.c',
2011-02-15 08:30:35 +03:00
subsystem='auth4',
2011-05-07 10:14:06 +04:00
init_function='auth4_winbind_init',
2010-10-24 03:23:53 +04:00
deps='RPC_NDR_WINBIND MESSAGING wbclient'
2010-03-17 14:07:42 +03:00
)
2011-02-15 08:30:35 +03:00
bld.SAMBA_MODULE('auth4_developer',
2010-03-17 14:07:42 +03:00
source='auth_developer.c',
2011-02-15 08:30:35 +03:00
subsystem='auth4',
2011-05-07 10:14:06 +04:00
init_function='auth4_developer_init',
2010-11-03 10:21:34 +03:00
deps='talloc'
2010-03-17 14:07:42 +03:00
)
2011-02-15 08:30:35 +03:00
bld.SAMBA_MODULE('auth4_unix',
2010-03-17 14:07:42 +03:00
source='auth_unix.c',
2011-02-15 08:30:35 +03:00
subsystem='auth4',
2011-05-07 10:14:06 +04:00
init_function='auth4_unix_init',
2010-10-24 02:19:49 +04:00
deps='pam PAM_ERRORS LIBTSOCKET'
2010-03-17 14:07:42 +03:00
)
2011-02-15 08:30:35 +03:00
bld.SAMBA_LIBRARY('auth4',
2010-10-24 02:53:52 +04:00
source='auth.c auth_util.c auth_simple.c',
autoproto='auth_proto.h',
2011-12-28 10:48:45 +04:00
deps='samba-util security samdb samba-credentials tevent-util LIBWBCLIENT_OLD auth_unix_token samba-modules KERBEROS_UTIL',
2010-10-24 02:53:52 +04:00
private_library=True
)
2010-04-16 02:42:12 +04:00
2010-11-15 02:45:48 +03:00
bld.SAMBA_MODULE('service_auth',
2010-04-16 02:42:12 +04:00
source='auth_server_service.c',
2010-03-17 14:07:42 +03:00
subsystem='service',
init_function='server_service_auth_init',
2011-02-15 08:30:35 +03:00
deps='auth4',
2010-03-17 12:12:16 +03:00
internal_module=True
2010-03-17 14:07:42 +03:00
)