1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-12 20:58:37 +03:00
Puran Chand 2ab9847f54 Added smbc_SetLogCallback which lets third party code to capture libsmbclient logs
Signed-off-by: Puran Chand <pchand@vmware.com>
Reviewed-by: Garming Sam <garming@samba.org>

Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Sun Dec 10 04:56:23 CET 2017 on sn-devel-144
2017-12-10 04:56:23 +01:00

32 lines
1.2 KiB
Python

#!/usr/bin/env python
import Options, Logs
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='''
talloc
smbconf
libsmb
KRBCLIENT
msrpc3
libcli_lsa3''',
public_headers='../include/libsmbclient.h',
abi_directory='ABI',
abi_match='smbc_*',
vnum='0.3.1',
pc_files='smbclient.pc')