1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 08:43:13 +02:00

build: support python 3.8

In python 3.8, in order to link to -lpython3.8, you need to use the
exported pkg-config interface 'python3-embed' (or 'python3-config --libs
--embed'), see https://bugs.python.org/issue36721 for details.
This commit is contained in:
Eli Schwartz
2019-11-10 10:40:43 -05:00
committed by Sébastien Helleu
parent 5c8ac69f73
commit 76c6f52e8c
2 changed files with 8 additions and 2 deletions
+4 -1
View File
@@ -33,5 +33,8 @@ include(FindPkgConfig)
if(ENABLE_PYTHON2)
pkg_check_modules(PYTHON python2 IMPORTED_TARGET GLOBAL)
else()
pkg_check_modules(PYTHON python3 IMPORTED_TARGET GLOBAL)
pkg_check_modules(PYTHON python3-embed IMPORTED_TARGET GLOBAL)
if(NOT PYTHON_FOUND)
pkg_check_modules(PYTHON python3 IMPORTED_TARGET GLOBAL)
endif()
endif()