mirror of
https://github.com/samba-team/samba.git
synced 2025-02-08 05:57:51 +03:00
9941dfe9f6
This file (largely) contains functions to deal with UTF16 strings. Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org>
19 lines
529 B
Python
19 lines
529 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
if bld.env._SAMBA_BUILD_ == 4:
|
|
bld.SAMBA_SUBSYSTEM('CHARSET',
|
|
source='charcnv.c util_unistr.c',
|
|
public_deps='CODEPOINTS',
|
|
public_headers='charset.h',
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('ICONV_WRAPPER',
|
|
source='iconv.c',
|
|
public_deps='iconv replace talloc')
|
|
|
|
bld.SAMBA_SUBSYSTEM('CODEPOINTS',
|
|
source='codepoints.c util_str.c util_unistr_w.c',
|
|
deps='DYNCONFIG ICONV_WRAPPER'
|
|
)
|