Since boost 1.67, libboost_python is now named libboost_python27 when
python2 is enabled
Fixes:
- http://autobuild.buildroot.net/results/
a1feb4c4b70b3c939ae1127417130ea33a91159b
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Subject: [PATCH] Determine boost_python name depending on current Python
version
-Python2 requires boost_python and Python3 requires boost_python36 (since
-boost 1.67).
+Python2 requires boost_python27 and Python3 requires boost_python36
+(since boost 1.67).
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+boostlib = "boost_python36"
+if sys.version_info < (3, 0):
-+ boostlib = "boost_python"
++ boostlib = "boost_python27"
+
setup(
name = 'pylibconfig',