mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
22b2151fb5
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Uri Simchoni <uri@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
26 lines
458 B
Python
26 lines
458 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
bld.SAMBA_MODULE('service_winbindd',
|
|
source='winbindd.c',
|
|
subsystem='service',
|
|
init_function='server_service_winbindd_init',
|
|
deps='process_model UTIL_RUNCMD',
|
|
internal_module=False,
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('WB_HELPER',
|
|
source='wb_utils.c',
|
|
autoproto='wb_helper.h',
|
|
public_deps='RPC_NDR_LSA dcerpc-samr'
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('IDMAP',
|
|
source='idmap.c',
|
|
autoproto='idmap_proto.h',
|
|
public_deps='samdb-common ldbsamba'
|
|
)
|
|
|