We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba1f471 commit 7172918Copy full SHA for 7172918
1 file changed
setup.py
@@ -30,7 +30,9 @@
30
mapnik_config = 'mapnik-config'
31
mason_build = False
32
33
-boost_python_lib = os.environ.get("BOOST_PYTHON_LIB", 'boost_python')
+boost_python_lib = os.environ.get("BOOST_PYTHON_LIB", 'boost_python-mt')
34
+boost_system_lib = os.environ.get("BOOST_SYSTEM_LIB", 'boost_system-mt')
35
+boost_thread_lib = os.environ.get("BOOST_THREAD_LIB", 'boost_thread-mt')
36
37
try:
38
linkflags = subprocess.check_output([mapnik_config, '--libs']).rstrip('\n').split(' ')
@@ -215,9 +217,9 @@
215
217
'mapnik',
216
218
'mapnik-wkt',
219
'mapnik-json',
- 'boost_thread',
- 'boost_system',
220
boost_python_lib,
221
+ boost_thread_lib,
222
+ boost_system_lib
223
],
224
extra_compile_args = extra_comp_args,
225
extra_link_args = linkflags,
0 commit comments