mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
b0fb567f04
these are needed so we can support a system talloc without using the bundled talloc.h
27 lines
487 B
Python
27 lines
487 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_SUBSYSTEM('ntlm_check',
|
|
source='ntlm_check.c',
|
|
deps='LIBSAMBA-UTIL'
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('MSRPC_PARSE',
|
|
source='msrpc_parse.c',
|
|
deps='talloc'
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('LIBCLI_AUTH',
|
|
source='credentials.c session.c smbencrypt.c smbdes.c',
|
|
public_deps='MSRPC_PARSE LIBSAMBA-HOSTCONFIG',
|
|
public_headers='credentials.h:domain_credentials.h'
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('COMMON_SCHANNELDB',
|
|
source='schannel_state_tdb.c',
|
|
deps='TDB_WRAP'
|
|
)
|
|
|