tdb: Make "tdb_purge_dead" internally public
[Samba.git] / source4 / kdc / wscript_build
blob78a79b7c4033cad9ade1132a0aceef0119e47af0
1 #!/usr/bin/env python
3 # We do this because we do not want to depend on the KDC, only find and use it's header files. We do not want
4 if not bld.CONFIG_SET("USING_SYSTEM_KDC"):
5 kdc_include = "../heimdal/kdc"
6 else:
7 kdc_include = getattr(bld.env, "CPPPATH_KDC")
9 bld.SAMBA_MODULE('service_kdc',
10 source='kdc.c kpasswdd.c proxy.c',
11 subsystem='service',
12 init_function='server_service_kdc_init',
13 deps='kdc HDB_SAMBA4 WDC_SAMBA4 samba-hostconfig LIBTSOCKET LIBSAMBA_TSOCKET com_err samba_server_gensec PAC_GLUE',
14 internal_module=False,
18 bld.SAMBA_LIBRARY('HDB_SAMBA4',
19 source='hdb-samba4.c hdb-samba4-plugin.c',
20 deps='ldb auth4_sam auth_sam_reply samba-credentials hdb db-glue samba-hostconfig com_err',
21 includes=kdc_include,
22 private_library=True
25 # A plugin for Heimdal's kadmin for users who need to operate that tool
26 bld.SAMBA_LIBRARY('HDB_SAMBA4_PLUGIN',
27 source='hdb-samba4-plugin.c',
28 deps='hdb HDB_SAMBA4 samba-util samba-hostconfig ',
29 includes=kdc_include,
30 link_name='modules/hdb/hdb_samba4.so',
31 realname='hdb_samba4.so',
32 install_path='${MODULESDIR}/hdb',
33 enabled = (bld.CONFIG_SET("USING_SYSTEM_KRB5") and bld.CONFIG_SET("USING_SYSTEM_HDB"))
36 bld.SAMBA_SUBSYSTEM('WDC_SAMBA4',
37 source='wdc-samba4.c',
38 includes=kdc_include,
39 deps='ldb auth4_sam auth_sam_reply samba-credentials hdb PAC_GLUE samba-hostconfig com_err'
43 bld.SAMBA_SUBSYSTEM('PAC_GLUE',
44 source='pac-glue.c',
45 includes=kdc_include,
46 deps='ldb auth4_sam auth_sam_reply samba-credentials hdb samba-hostconfig com_err'
49 bld.SAMBA_LIBRARY('pac',
50 source=[],
51 deps='PAC_GLUE',
52 private_library=True,
53 grouping_library=True)
56 bld.SAMBA_LIBRARY('db-glue',
57 source='db-glue.c',
58 deps='ldb auth4_sam auth_sam_reply samba-credentials hdb samba-hostconfig com_err',
59 private_library=True,
60 includes=kdc_include,
63 bld.SAMBA_SUBSYSTEM('MIT_SAMBA',
64 source='mit_samba.c',
65 deps='ldb auth4_sam auth_sam_reply samba-credentials hdb db-glue PAC_GLUE samba-hostconfig com_err'
69 bld.SAMBA_LIBRARY('mit-samba',
70 source='',
71 deps='MIT_SAMBA',
72 external_library=True,
73 realname='mit_samba.so'