mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
d0062d312c
This also adds a SMBC_ENCRYPTLEVEL_DEFAULT to 'enum smbc_smb_encrypt_level' in order to use the smb.conf default value. Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
31 lines
1.2 KiB
Python
31 lines
1.2 KiB
Python
#!/usr/bin/env python
|
|
|
|
def build(bld):
|
|
bld.SAMBA3_LIBRARY('smbclient',
|
|
source='''
|
|
libsmb_cache.c
|
|
libsmb_compat.c
|
|
libsmb_context.c
|
|
libsmb_dir.c
|
|
libsmb_file.c
|
|
libsmb_misc.c
|
|
libsmb_path.c
|
|
libsmb_printjob.c
|
|
libsmb_server.c
|
|
libsmb_stat.c
|
|
libsmb_xattr.c
|
|
libsmb_setget.c''',
|
|
public_deps='''
|
|
pthread
|
|
talloc
|
|
smbconf
|
|
libsmb
|
|
KRBCLIENT
|
|
msrpc3
|
|
libcli_lsa3''',
|
|
public_headers='../include/libsmbclient.h',
|
|
abi_directory='ABI',
|
|
abi_match='smbc_*',
|
|
vnum='0.7.0',
|
|
pc_files='smbclient.pc')
|