mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
3d0e55b6d9
iconv.c directly references them, it does not make sense to have it without them. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
23 lines
724 B
Python
23 lines
724 B
Python
#!/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',
|
|
public_deps='talloc')
|