mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
Scons: add support for system iconv function (from glibc)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14995 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a7ed5b9486
commit
5889f636c0
@ -673,12 +673,12 @@ if not fast_start:
|
||||
or (use_vc and not conf.CheckLibWithHeader('zdll', 'zlib.h', 'C')):
|
||||
print 'Did not find zdll.lib or zlib.h, exiting!'
|
||||
Exit(1)
|
||||
has_iconv = conf.CheckLib('iconv')
|
||||
has_libiconv = conf.CheckLib('libiconv')
|
||||
if has_iconv:
|
||||
env['ICONV_LIB'] = 'iconv'
|
||||
elif has_libiconv:
|
||||
env['ICONV_LIB'] = 'libiconv'
|
||||
if conf.CheckLib('iconv'):
|
||||
env['ICONV_LIB'] = ['iconv']
|
||||
elif conf.CheckLib('libiconv'):
|
||||
env['ICONV_LIB'] = ['libiconv']
|
||||
elif conf.CheckFunc('iconv_open'):
|
||||
env['ICONV_LIB'] = []
|
||||
else:
|
||||
print 'Did not find iconv or libiconv, exiting!'
|
||||
Exit(1)
|
||||
@ -1356,19 +1356,20 @@ elif frontend == 'qt4':
|
||||
frontend_libs = [x + qt_lib_suffix for x in qt_libs]
|
||||
|
||||
|
||||
system_libs = env['ICONV_LIB']
|
||||
if platform_name in ['win32', 'cygwin']:
|
||||
# the final link step needs stdc++ to succeed under mingw
|
||||
# FIXME: shouldn't g++ automatically link to stdc++?
|
||||
if use_vc:
|
||||
system_libs = [env['ICONV_LIB'], 'ole32', 'shlwapi', 'shell32', 'advapi32', 'zdll']
|
||||
system_libs += ['ole32', 'shlwapi', 'shell32', 'advapi32', 'zdll']
|
||||
else:
|
||||
system_libs = [env['ICONV_LIB'], 'shlwapi', 'stdc++', 'z']
|
||||
system_libs += ['shlwapi', 'stdc++', 'z']
|
||||
elif platform_name == 'cygwin' and env['X11']:
|
||||
system_libs = [env['ICONV_LIB'], 'GL', 'Xmu', 'Xi', 'Xrender', 'Xrandr',
|
||||
system_libs += ['GL', 'Xmu', 'Xi', 'Xrender', 'Xrandr',
|
||||
'Xcursor', 'Xft', 'freetype', 'fontconfig', 'Xext', 'X11', 'SM', 'ICE',
|
||||
'resolv', 'pthread', 'z']
|
||||
else:
|
||||
system_libs = [env['ICONV_LIB'], 'z']
|
||||
system_libs += ['z']
|
||||
|
||||
libs = [
|
||||
('HAVE_LIBGDI32', 'gdi32'),
|
||||
|
Loading…
Reference in New Issue
Block a user