1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00
samba-mirror/lib/util/charset/wscript_build
Andrew Bartlett 4081ea5b49 lib/util/charset use convert_string.c in common
This brings another layer of the charcnv library in common.

Andrew Bartlett

Signed-off-by: Andrew Tridgell <tridge@samba.org>
2011-04-28 03:24:05 +02:00

19 lines
546 B
Python

#!/usr/bin/env python
if bld.env._SAMBA_BUILD_ == 4:
bld.SAMBA_SUBSYSTEM('CHARSET',
source='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 convert_string.c util_str.c util_unistr_w.c charcnv.c',
deps='DYNCONFIG ICONV_WRAPPER'
)