mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
f9acf770e9
Now that the 'table' modules are gone, there is no reason for there to be charset modules at all. This builds the macosxfs and weird modules into the binary at the appropriate times, and changes the tests to test instead the difference between the remaining internal handlers and iconv(). Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Tue Sep 20 06:27:06 CEST 2011 on sn-devel-104
12 lines
478 B
Python
12 lines
478 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_SUBSYSTEM('ICONV_WRAPPER',
|
|
source='iconv.c',
|
|
public_deps='iconv replace talloc')
|
|
|
|
bld.SAMBA_SUBSYSTEM('charset',
|
|
public_headers='charset.h',
|
|
source='codepoints.c convert_string.c util_str.c util_unistr_w.c charcnv.c pull_push.c util_unistr.c weird.c charset_macosxfs.c',
|
|
deps='DYNCONFIG ICONV_WRAPPER',
|
|
public_deps='talloc')
|