mirror of
https://github.com/samba-team/samba.git
synced 2025-11-20 08:23:50 +03:00
16 lines
402 B
Python
16 lines
402 B
Python
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')
|