Package: kig Version: 4:26.04.0-1 Severity: serious Tags: patch X-Debbugs-Cc: Graham Inggs <[email protected]>, Pino Toscano <[email protected]> Control: block 1130323 by -1
Package: kig Version: 4:26.04.0-1+b1 Architecture: amd64 Depends: ..., libboost-python1.90.0-py313,..., libpython3.14 (>= 3.14.1),... The attached patch asks boost for the correct library.
Description: Link with the correct libboost_python Author: Adrian Bunk <[email protected]> --- kig-26.04.0.orig/cmake/modules/FindBoostPython.cmake +++ kig-26.04.0/cmake/modules/FindBoostPython.cmake @@ -33,7 +33,8 @@ endmacro() cmake_policy(SET CMP0167 OLD) cmake_policy(SET CMP0148 OLD) -find_package(Boost QUIET COMPONENTS python3) +find_package(Python3 QUIET COMPONENTS Interpreter) +find_package(Boost QUIET COMPONENTS python3${Python3_VERSION_MINOR}) if(NOT Boost_PYTHON3_FOUND) find_package(Boost QUIET COMPONENTS python) if(Boost_PYTHON_FOUND)

