mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
23 lines
497 B
Python
23 lines
497 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
bld.SAMBA_LIBRARY('cli_smb_common',
|
|
source='''
|
|
smb_signing.c smb_seal.c
|
|
smb2_create_blob.c smb2_signing.c
|
|
util.c read_smb.c
|
|
smbXcli_base.c
|
|
smb1cli_trans.c
|
|
''',
|
|
deps='LIBCRYPTO errors gssapi gensec KRB5_WRAP LIBASYNC_REQ',
|
|
public_deps='talloc samba-util',
|
|
private_library=True,
|
|
public_headers='''
|
|
smb_common.h smb2_constants.h smb_constants.h
|
|
smb_signing.h smb_seal.h
|
|
smb2_create_blob.h smb2_signing.h
|
|
smb_util.h read_smb.h
|
|
smb_unix_ext.h
|
|
''',
|
|
)
|