blob: 7d9044d547c1168771c2736eebc15d24d90d555f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
SConscript('../../build/scons/iconv.py')
# tastes like -*- python -*-
Import('hostenv')
#conf = Configure(hostenv, 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')
|