mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
01682f797f
this is preparation for being able to use system versions of these libraries
18 lines
409 B
Python
18 lines
409 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_MISC NDR_SECURITY tevent'
|
|
)
|
|
|