mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
eb0005dfca
this prevents double linking of the tdb wrap code
27 lines
457 B
Python
27 lines
457 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_SUBSYSTEM('ntlm_check',
|
|
source='ntlm_check.c',
|
|
deps='samba-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',
|
|
public_headers='credentials.h:domain_credentials.h'
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('COMMON_SCHANNELDB',
|
|
source='schannel_state_tdb.c',
|
|
deps='tdb-wrap'
|
|
)
|
|
|