scons: no need to link to fontconfig in static cairo build

This commit is contained in:
Dane Springmeyer 2014-08-07 19:16:59 -07:00
parent 3d8a6714a1
commit cbe643c3f5

View file

@ -1531,7 +1531,7 @@ if not preconfigured:
env["CAIRO_ALL_LIBS"] = ['cairo'] env["CAIRO_ALL_LIBS"] = ['cairo']
if env['RUNTIME_LINK'] == 'static': if env['RUNTIME_LINK'] == 'static':
env["CAIRO_ALL_LIBS"].extend( env["CAIRO_ALL_LIBS"].extend(
['pixman-1','expat','fontconfig'] ['pixman-1','expat']
) )
# todo - run actual checkLib? # todo - run actual checkLib?
env['HAS_CAIRO'] = True env['HAS_CAIRO'] = True