mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
abbbbbff37
Returns the same as smbc_readdirplus() but also can return a struct stat if passed in by the caller. struct stat is synthesized from the data returned by the SMB server. Signed-off-by: Puran Chand <pchand@vmware.com> Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Andreas Schneider <asn@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.6.0',
|
|
pc_files='smbclient.pc')
|