blob: 53e5db44bb5d4bf85f6e7f72adeb55bf2040147d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Import('hostenv')
SConscript('../../build/scons/iconv.py')
# tastes like -*- python -*-
#conf = Configure( custom_tests = { 'CheckIconv' : CheckIconv })
#(have_iconv,iconv) = conf.CheckIconv()
#conf.Finish()
#if not have_iconv:
# print "Install iconv for better charset compatibility"
iconv = []
charset = hostenv.StaticLibrary('charset',['iconv.c','charcnv.c',iconv])
Export('charset')
|