kcc/drepl: Build as service.
[abartlet/samba.git/.git] / source4 / dsdb / wscript_build
1 #!/usr/bin/env python
2
3 bld.RECURSE('samdb/ldb_modules')
4
5 bld.SAMBA_LIBRARY('samdb',
6         source='samdb/samdb.c samdb/samdb_privilege.c samdb/cracknames.c repl/replicated_objects.c',
7         autoproto='samdb/samdb_proto.h',
8         private_library=True,
9         public_deps='krb5',
10         deps='ndr NDR_DRSUAPI NDR_DRSBLOBS auth_system_session LIBCLI_AUTH ndr SAMDB_SCHEMA ldbsamba samdb-common LIBCLI_DRSUAPI LIBCLI_LDAP_NDR samba-util com_err authkrb5 credentials ldbwrap',
11         )
12
13
14 bld.SAMBA_LIBRARY('samdb-common',
15         source='common/util.c common/util_samr.c common/dsdb_dn.c common/dsdb_access.c ../../libds/common/flag_mapping.c',
16         autoproto='common/proto.h',
17         private_library=True,
18         deps='ldb NDR_DRSBLOBS UTIL_LDB LIBCLI_AUTH samba-hostconfig samba_socket LIBCLI_LDAP_NDR'
19         )
20
21
22 bld.SAMBA_SUBSYSTEM('SAMDB_SCHEMA',
23         source='schema/schema_init.c schema/schema_set.c schema/schema_query.c schema/schema_syntax.c schema/schema_description.c schema/schema_convert_to_ol.c schema/schema_inferiors.c schema/schema_prefixmap.c schema/schema_info_attr.c schema/schema_filtered.c schema/dsdb_dn.c',
24         autoproto='schema/proto.h',
25         deps='samdb-common NDR_DRSUAPI NDR_DRSBLOBS ldbsamba tevent'
26         )
27
28
29 bld.SAMBA_MODULE('service_drepl',
30         source='repl/drepl_service.c repl/drepl_periodic.c repl/drepl_partitions.c repl/drepl_out_pull.c repl/drepl_out_helpers.c repl/drepl_notify.c repl/drepl_ridalloc.c repl/drepl_extended.c repl/drepl_fsmo.c repl/drepl_secret.c repl/drepl_replica.c',
31         autoproto='repl/drepl_service_proto.h',
32         subsystem='service',
33         init_function='server_service_drepl_init',
34         deps='samdb process_model RPC_NDR_DRSUAPI',
35         internal_module=False,
36         )
37
38
39 bld.SAMBA_MODULE('service_kcc',
40         source='kcc/kcc_service.c kcc/kcc_connection.c kcc/kcc_topology.c kcc/kcc_deleted.c kcc/kcc_periodic.c kcc/kcc_drs_replica_info.c',
41         autoproto='kcc/kcc_service_proto.h',
42         subsystem='service',
43         init_function='server_service_kcc_init',
44         deps='samdb process_model RPC_NDR_IRPC RPC_NDR_DRSUAPI',
45         internal_module=False,
46         )
47
48
49 bld.SAMBA_MODULE('service_dns_update',
50         source='dns/dns_update.c',
51         subsystem='service',
52         init_function='server_service_dnsupdate_init',
53         deps='samdb UTIL_RUNCMD samba-util ldb samdb-common errors talloc auth_system_session samba-hostconfig',
54         internal_module=False
55         )
56
57 bld.SAMBA_PYTHON('python_dsdb',
58         source='pydsdb.c',
59         # the dependency on dcerpc here is because gensec
60         # depends on dcerpc but the waf circular dependency finder
61         # removes it so we end up with unresolved symbols.
62         deps='samdb pyldb-util dcerpc com_err pyrpc_util',
63         realname='samba/dsdb.so'
64         )