source: vendor/3.6.0/source4/auth/wscript_build

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

Samba Server: update vendor to 3.6.0

File size: 983 bytes
Line 
1#!/usr/bin/env python
2
3bld.RECURSE('gensec')
4bld.RECURSE('kerberos')
5bld.RECURSE('ntlmssp')
6bld.RECURSE('ntlm')
7bld.RECURSE('credentials')
8
9bld.SAMBA_SUBSYSTEM('auth_session',
10 source='session.c',
11 autoproto='session_proto.h',
12 public_deps='credentials',
13 public_headers='session.h',
14 header_path='samba',
15 deps='samdb auth4_sam'
16 )
17
18
19bld.SAMBA_SUBSYSTEM('samba_server_gensec',
20 source='samba_server_gensec.c',
21 public_deps='credentials gensec auth4'
22 )
23
24
25bld.SAMBA_SUBSYSTEM('auth_system_session',
26 source='system_session.c',
27 autoproto='system_session_proto.h',
28 public_deps='credentials',
29 deps='auth_session',
30 )
31
32
33bld.SAMBA_SUBSYSTEM('auth4_sam',
34 source='sam.c',
35 autoproto='auth_sam.h',
36 public_deps='samdb security ldb tevent',
37 deps=''
38 )
39
40
41bld.SAMBA_PYTHON('pyauth',
42 source='pyauth.c',
43 public_deps='auth_system_session',
44 deps='samdb pytalloc-util pyparam_util pyldb-util pycredentials auth4',
45 realname='samba/auth.so'
46 )
47
Note: See TracBrowser for help on using the repository browser.