repo.or.cz
/
Samba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libsmb: Make cli_ntcreate cancellable
[Samba.git]
/
source3
/
libsmb
/
wscript
blob
9750ed3a2059c2f23aeed34da7af12b86d391c42
1
#!/usr/bin/env python
2
3
import
Options
,
Logs
4
5
def
build
(
bld
):
6
bld
.
SAMBA3_LIBRARY
(
'smbclient'
,
7
source
=
'''
8
libsmb_cache.c
9
libsmb_compat.c
10
libsmb_context.c
11
libsmb_dir.c
12
libsmb_file.c
13
libsmb_misc.c
14
libsmb_path.c
15
libsmb_printjob.c
16
libsmb_server.c
17
libsmb_stat.c
18
libsmb_xattr.c
19
libsmb_setget.c'''
,
20
public_deps
=
'''
21
talloc
22
param
23
libsmb
24
KRBCLIENT
25
msrpc3
26
libcli_lsa3'''
,
27
public_headers
=
'../include/libsmbclient.h'
,
28
abi_directory
=
'ABI'
,
29
abi_match
=
'smbc_*'
,
30
vnum
=
'0.2.1'
,
31
pc_files
=
'smbclient.pc'
)