source: trunk/server/source4/auth/ntlm/wscript_build

Last change on this file was 745, checked in by Silvan Scherrer, 13 years ago

Samba Server: updated trunk to 3.6.0

File size: 1.3 KB
Line 
1#!/usr/bin/env python
2
3bld.SAMBA_MODULE('auth4_sam_module',
4 source='auth_sam.c',
5 subsystem='auth4',
6 init_function='auth_sam_init',
7 deps='samdb auth4_sam NTLMSSP_COMMON samba-hostconfig'
8 )
9
10
11bld.SAMBA_MODULE('auth4_anonymous',
12 source='auth_anonymous.c',
13 subsystem='auth4',
14 init_function='auth_anonymous_init',
15 deps='talloc'
16 )
17
18
19bld.SAMBA_MODULE('auth4_server',
20 source='auth_server.c',
21 subsystem='auth4',
22 init_function='auth_server_init',
23 deps='samba-util LIBCLI_SMB CREDENTIALS_NTLM'
24 )
25
26
27bld.SAMBA_MODULE('auth4_winbind',
28 source='auth_winbind.c',
29 subsystem='auth4',
30 init_function='auth_winbind_init',
31 deps='RPC_NDR_WINBIND MESSAGING wbclient'
32 )
33
34
35bld.SAMBA_MODULE('auth4_developer',
36 source='auth_developer.c',
37 subsystem='auth4',
38 init_function='auth_developer_init',
39 deps='talloc'
40 )
41
42
43bld.SAMBA_MODULE('auth4_unix',
44 source='auth_unix.c',
45 subsystem='auth4',
46 init_function='auth_unix_init',
47 deps='pam PAM_ERRORS LIBTSOCKET'
48 )
49
50
51bld.SAMBA_LIBRARY('auth4',
52 source='auth.c auth_util.c auth_simple.c',
53 autoproto='auth_proto.h',
54 deps='samba-util security samdb credentials UTIL_TEVENT',
55 private_library=True
56 )
57
58bld.SAMBA_MODULE('service_auth',
59 source='auth_server_service.c',
60 subsystem='service',
61 init_function='server_service_auth_init',
62 deps='auth4',
63 internal_module=True
64 )
65
Note: See TracBrowser for help on using the repository browser.