From e61644b930a3d90b53c4d56b4c85b964d0967774 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Wed, 5 Dec 2012 19:57:55 -0800 Subject: [PATCH] boost system linking in python too --- bindings/python/build.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bindings/python/build.py b/bindings/python/build.py index cee697357..829320e9f 100644 --- a/bindings/python/build.py +++ b/bindings/python/build.py @@ -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: