source: trunk/server/lib/util/charset/wscript_build

Last change on this file was 745, checked in by Silvan Scherrer, 13 years ago

Samba Server: updated trunk to 3.6.0

File size: 520 bytes
Line 
1#!/usr/bin/env python
2
3
4if bld.env._SAMBA_BUILD_ == 4:
5 bld.SAMBA_SUBSYSTEM('CHARSET',
6 source='charcnv.c util_unistr.c',
7 public_deps='CODEPOINTS',
8 public_headers='charset.h',
9 )
10
11bld.SAMBA_SUBSYSTEM('ICONV_WRAPPER',
12 source='iconv.c',
13 public_deps='iconv replace talloc')
14
15bld.SAMBA_SUBSYSTEM('CODEPOINTS',
16 source='codepoints.c',
17 deps='DYNCONFIG ICONV_WRAPPER'
18 )
Note: See TracBrowser for help on using the repository browser.