blob: 0a9ee2cc95cec9bb3f914accb7d3e8d88ee8c0dd [file] [log] [blame]
Andrew Geisslereff27472021-10-29 15:35:00 -05001From e193f080c7d209516ac9b712fa0c50bb08026fa2 Mon Sep 17 00:00:00 2001
2From: Martin Jansa <Martin.Jansa@gmail.com>
3Date: Tue, 19 Oct 2021 12:24:31 +0000
4Subject: [PATCH] BoostConfig.cmake: allow searching for python310
5
6* accept double digits in Python3_VERSION_MINOR
7
8* if someone is using e.g.:
9 find_package(Python3 REQUIRED)
10 find_package(Boost REQUIRED python${Python3_VERSION_MAJOR}${Python3_VERSION_MINOR})
11
12 with python-3.10 then it currently fails with:
13
14 -- Found PythonLibs: /usr/lib/libpython3.10.so (found version "3.10.0")
15 -- Found Python3: -native/usr/bin/python3-native/python3 (found version "3.10.0") found components: Interpreter
16 CMake Error at /usr/lib/cmake/Boost-1.77.0/BoostConfig.cmake:141 (find_package):
17 Could not find a package configuration file provided by "boost_python310"
18 (requested version 1.77.0) with any of the following names:
19
20 boost_python310Config.cmake
21 boost_python310-config.cmake
22
23 Add the installation prefix of "boost_python310" to CMAKE_PREFIX_PATH or
24 set "boost_python310_DIR" to a directory containing one of the above files.
25 If "boost_python310" provides a separate development package or SDK, be
26 sure it has been installed.
27 Call Stack (most recent call first):
28 /usr/lib/cmake/Boost-1.77.0/BoostConfig.cmake:258 (boost_find_component)
29 /usr/share/cmake-3.21/Modules/FindBoost.cmake:594 (find_package)
30 CMakeLists.txt:18 (find_package)
31
32Upstream-Status: Submitted [https://github.com/boostorg/boost_install/pull/53]
33Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
34---
35 tools/boost_install/BoostConfig.cmake | 2 +-
36 1 file changed, 1 insertion(+), 1 deletion(-)
37
38diff --git a/tools/boost_install/BoostConfig.cmake b/tools/boost_install/BoostConfig.cmake
39index fd17821..5dffa58 100644
40--- a/tools/boost_install/BoostConfig.cmake
41+++ b/tools/boost_install/BoostConfig.cmake
42@@ -113,7 +113,7 @@ macro(boost_find_component comp required quiet)
43 set(_BOOST_REQUIRED REQUIRED)
44 endif()
45
46- if("${comp}" MATCHES "^(python|numpy|mpi_python)([1-9])([0-9])$")
47+ if("${comp}" MATCHES "^(python|numpy|mpi_python)([1-9])([0-9][0-9]?)$")
48
49 # handle pythonXY and numpyXY versioned components for compatibility
50