s4-kdc: we don't need the special include handling now
[ira/wip.git] / source4 / kdc / wscript_build
1 #!/usr/bin/env python
2
3 bld.SAMBA_MODULE('KDC',
4         source='kdc.c kpasswdd.c',
5         subsystem='service',
6         init_function='server_service_kdc_init',
7         deps='kdc HDB_SAMBA4 WDC_SAMBA4 samba-hostconfig LIBTSOCKET LIBSAMBA_TSOCKET com_err samba_server_gensec',
8         )
9
10
11 bld.SAMBA_SUBSYSTEM('HDB_SAMBA4',
12         source='hdb-samba4.c',
13         deps='ldb auth_sam auth_sam_reply credentials hdb db-glue samba-hostconfig com_err',
14         includes='../heimdal/kdc',
15         )
16
17
18 bld.SAMBA_SUBSYSTEM('WDC_SAMBA4',
19         source='wdc-samba4.c',
20         includes='../heimdal/kdc',
21         deps='ldb auth_sam auth_sam_reply credentials hdb PAC_GLUE samba-hostconfig com_err'
22         )
23
24
25 bld.SAMBA_SUBSYSTEM('PAC_GLUE',
26         source='pac-glue.c',
27         includes='../heimdal/kdc',
28         deps='ldb auth_sam auth_sam_reply credentials hdb samba-hostconfig com_err'
29         )
30
31 bld.SAMBA_LIBRARY('pac',
32         source=[],
33         deps='PAC_GLUE',
34         private_library=True,
35         grouping_library=True)
36
37
38 bld.SAMBA_LIBRARY('db-glue',
39         source='db-glue.c',
40         deps='ldb auth_sam auth_sam_reply credentials hdb samba-hostconfig com_err',
41         private_library=True
42         )
43
44
45 bld.SAMBA_SUBSYSTEM('MIT_SAMBA',
46         source='mit_samba.c',
47         deps='ldb auth_sam auth_sam_reply credentials hdb db-glue PAC_GLUE samba-hostconfig com_err'
48         )
49
50
51 bld.SAMBA_LIBRARY('mit-samba',
52         source='',
53         deps='MIT_SAMBA',
54         external_library=True,
55         realname='mit_samba.so'
56         )
57