boost threads are no longer needed

This commit is contained in:
Dane Springmeyer 2014-01-23 00:42:05 -08:00
parent 499d485151
commit cd4c645032

View file

@ -56,14 +56,10 @@ enabled_imaging_libraries = []
filesystem = 'boost_filesystem%s' % env['BOOST_APPEND']
regex = 'boost_regex%s' % env['BOOST_APPEND']
system = 'boost_system%s' % env['BOOST_APPEND']
thread = 'boost_thread%s' % env['BOOST_APPEND']
# clear out and re-set libs for this env
# note: order matters on linux: see lorder | tsort
lib_env['LIBS'] = [filesystem,
regex,
thread
]
lib_env['LIBS'] = [filesystem,regex]
if env['HAS_CAIRO']:
lib_env.Append(LIBS=env['CAIRO_ALL_LIBS'])