2010-03-28 09:48:49 +11:00
#!/usr/bin/env python
2011-02-15 16:30:35 +11:00
bld.SAMBA_MODULE('auth4_sam_module',
2010-03-17 22:07:42 +11:00
source='auth_sam.c',
2011-02-15 16:30:35 +11:00
subsystem='auth4',
2011-05-07 08:14:06 +02:00
init_function='auth4_sam_init',
2023-05-04 16:39:55 +12:00
deps='samdb auth4_sam NTLMSSP_COMMON samba-hostconfig RPC_NDR_IRPC MESSAGING db-glue authn_policy_util',
2022-06-10 12:47:01 +12:00
enabled=bld.AD_DC_BUILD_IS_ENABLED()
2010-03-17 22:07:42 +11:00
)
2011-02-15 16:30:35 +11:00
bld.SAMBA_MODULE('auth4_anonymous',
2010-03-17 22:07:42 +11:00
source='auth_anonymous.c',
2011-02-15 16:30:35 +11:00
subsystem='auth4',
2011-05-07 08:14:06 +02:00
init_function='auth4_anonymous_init',
2021-04-14 21:48:32 +02:00
deps='tevent'
2010-03-17 22:07:42 +11:00
)
2011-02-15 16:30:35 +11:00
bld.SAMBA_MODULE('auth4_winbind',
2010-03-17 22:07:42 +11:00
source='auth_winbind.c',
2011-02-15 16:30:35 +11:00
subsystem='auth4',
2011-05-07 08:14:06 +02:00
init_function='auth4_winbind_init',
2010-10-23 16:23:53 -07:00
deps='RPC_NDR_WINBIND MESSAGING wbclient'
2010-03-17 22:07:42 +11:00
)
2011-02-15 16:30:35 +11:00
bld.SAMBA_MODULE('auth4_developer',
2010-03-17 22:07:42 +11:00
source='auth_developer.c',
2011-02-15 16:30:35 +11:00
subsystem='auth4',
2011-05-07 08:14:06 +02:00
init_function='auth4_developer_init',
2022-03-23 15:10:23 +13:00
deps='tevent',
enabled=bld.env.DEVELOPER_MODE
2010-03-17 22:07:42 +11:00
)
2011-02-15 16:30:35 +11:00
bld.SAMBA_LIBRARY('auth4',
2010-10-23 15:53:52 -07:00
source='auth.c auth_util.c auth_simple.c',
autoproto='auth_proto.h',
2012-08-10 11:37:28 +02:00
deps='samba-util samba-security samdb samba-credentials tevent-util LIBWBCLIENT_OLD auth_unix_token samba-modules KERBEROS_UTIL',
2010-10-23 15:53:52 -07:00
private_library=True
)
2010-04-16 08:42:12 +10:00
2010-11-15 00:45:48 +01:00
bld.SAMBA_MODULE('service_auth',
2010-04-16 08:42:12 +10:00
source='auth_server_service.c',
2010-03-17 22:07:42 +11:00
subsystem='service',
init_function='server_service_auth_init',
2011-02-15 16:30:35 +11:00
deps='auth4',
2010-03-17 20:12:16 +11:00
internal_module=True
2010-03-17 22:07:42 +11:00
)