mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
feb7803555
This is an obvious part of MR2888, not used anywhere yet. It will eventually result in us requesting SMB311 posix semantics, but for now it will just allow to change behaviour of libsmbclient that could break unsuspecting applications. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Ralph Böhme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@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.8.0',
|
|
pc_files='smbclient.pc')
|