mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
15 lines
305 B
Python
15 lines
305 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('LDBSAMBA',
|
|
source='ldif_handlers.c',
|
|
autoproto='ldif_handlers_proto.h',
|
|
public_deps='ldb',
|
|
deps='LIBSECURITY SAMDB_SCHEMA LIBNDR NDR_DRSBLOBS'
|
|
)
|
|
|
|
|
|
bld.SAMBA_PYTHON('pyldbsamba', 'pyldb.c',
|
|
deps='LDBSAMBA pyparam_util',
|
|
realname='samba/_ldb.so')
|