mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
e995c9c16f
Garming noticed this was untested code in the lcov report, and it turns out to be unused. Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
19 lines
333 B
Python
19 lines
333 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('IDMAP',
|
|
source='idmap.c',
|
|
autoproto='idmap_proto.h',
|
|
public_deps='samdb-common ldbsamba'
|
|
)
|
|
|