blob: c69a17170ad6e70b38237036600c8a5ce9899dde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/env python
bld.SAMBA_SUBSYSTEM('ICONV_WRAPPER',
source='''
iconv.c
weird.c
charset_macosxfs.c
''',
public_deps='iconv replace talloc ' + bld.env['icu-libs'])
bld.SAMBA_SUBSYSTEM('charset',
public_headers='charset.h',
source='''
codepoints.c
convert_string.c
util_str.c
util_unistr_w.c
pull_push.c
util_unistr.c
''',
deps='DYNCONFIG ICONV_WRAPPER smb-panic samba-debug',
public_deps='talloc')
|