s3:files: factor fsp_free() out of file_free()
[Samba/gebeck_regimport.git] / source4 / auth / ntlm / wscript_build
blobf9e39001c05b95ba723b9cdfca84644a6c2ec5f0
1 #!/usr/bin/env python
3 bld.SAMBA_MODULE('auth4_sam_module',
4 source='auth_sam.c',
5 subsystem='auth4',
6 init_function='auth4_sam_init',
7 deps='samdb auth4_sam NTLMSSP_COMMON samba-hostconfig RPC_NDR_IRPC MESSAGING'
11 bld.SAMBA_MODULE('auth4_anonymous',
12 source='auth_anonymous.c',
13 subsystem='auth4',
14 init_function='auth4_anonymous_init',
15 deps='talloc'
19 bld.SAMBA_MODULE('auth4_winbind',
20 source='auth_winbind.c',
21 subsystem='auth4',
22 init_function='auth4_winbind_init',
23 deps='RPC_NDR_WINBIND MESSAGING wbclient'
27 bld.SAMBA_MODULE('auth4_developer',
28 source='auth_developer.c',
29 subsystem='auth4',
30 init_function='auth4_developer_init',
31 deps='talloc'
35 bld.SAMBA_MODULE('auth4_unix',
36 source='auth_unix.c',
37 subsystem='auth4',
38 init_function='auth4_unix_init',
39 deps='pam PAM_ERRORS LIBTSOCKET'
43 bld.SAMBA_LIBRARY('auth4',
44 source='auth.c auth_util.c auth_simple.c',
45 autoproto='auth_proto.h',
46 deps='samba-util security samdb samba-credentials tevent-util LIBWBCLIENT_OLD auth_unix_token samba-modules KERBEROS_UTIL',
47 private_library=True
50 bld.SAMBA_MODULE('service_auth',
51 source='auth_server_service.c',
52 subsystem='service',
53 init_function='server_service_auth_init',
54 deps='auth4',
55 internal_module=True