mirror of
https://github.com/samba-team/samba.git
synced 2025-08-06 17:32:29 +03:00
this prevents symbol duplication of the asn1 symbols in the service and ntvfs subsystems Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
18 lines
375 B
Python
18 lines
375 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_SUBSYSTEM('LIBCLI_LDAP_MESSAGE',
|
|
source='ldap_message.c',
|
|
public_deps='errors talloc ldb',
|
|
public_headers='ldap_message.h ldap_errors.h',
|
|
deps='samba-util asn1util'
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('LIBCLI_LDAP_NDR',
|
|
source='ldap_ndr.c',
|
|
public_deps='errors talloc',
|
|
public_headers='ldap_ndr.h',
|
|
deps='samba-util ldb NDR_SECURITY tevent'
|
|
)
|
|
|