mirror of
https://github.com/samba-team/samba.git
synced 2025-01-22 22:04:08 +03:00
18 lines
400 B
Python
18 lines
400 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_SUBSYSTEM('LIBCLI_LDAP_MESSAGE',
|
|
source='ldap_message.c',
|
|
public_deps='libsamba-errors talloc ldb',
|
|
public_headers='ldap_message.h ldap_errors.h',
|
|
deps='libsamba-util ASN1_UTIL'
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('LIBCLI_LDAP_NDR',
|
|
source='ldap_ndr.c',
|
|
public_deps='libsamba-errors talloc',
|
|
public_headers='ldap_ndr.h',
|
|
deps='libsamba-util ldb NDR_SECURITY tevent'
|
|
)
|
|
|