boost system linking in python too

This commit is contained in:
Dane Springmeyer 2012-12-05 19:57:55 -08:00
parent fd27717253
commit e61644b930

View file

@ -45,6 +45,9 @@ target_path_deprecated = os.path.normpath(env['PYTHON_INSTALL_LOCATION'] + os.pa
libraries = ['mapnik']
if env['HAS_BOOST_SYSTEM']:
libraries.append('boost_system%s' % env['BOOST_APPEND'])
if env['BOOST_PYTHON_LIB']:
libraries.append(env['BOOST_PYTHON_LIB'])
else: