summaryrefslogtreecommitdiff
path: root/lib/util/charset/wscript_build
blob: 80a649976b8f0ce917aedc7b14c12e5ca9cfc088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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'
	)