mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
82fa772fa2
Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Mon Feb 21 01:17:33 CET 2011 on sn-devel-104
19 lines
495 B
Python
19 lines
495 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')
|
|
|
|
bld.SAMBA_SUBSYSTEM('CODEPOINTS',
|
|
source='codepoints.c',
|
|
deps='DYNCONFIG ICONV_WRAPPER'
|
|
)
|