1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-24 11:56:38 +02:00

core: fix compilation of Python plugin on FreeBSD 12.0 (closes #1398)

This commit is contained in:
Sébastien Helleu
2019-08-31 14:13:58 +02:00
parent 63902ef52d
commit 8bb4549494
+5
View File
@@ -23,6 +23,11 @@ weechat-python-api.c weechat-python-api.h)
set_target_properties(python PROPERTIES PREFIX "")
if(PYTHON_FOUND)
# There's a weird bug on FreeBSD: the value of PYTHON_LDFLAGS is
# "-L/usr/local/lib;-lpython3.6m" instead of "-L/usr/local/lib -lpython3.6m".
# This is a temporary hack to fix the value, waiting for a clean fix.
string(REPLACE ";" " " PYTHON_LDFLAGS "${PYTHON_LDFLAGS}")
include_directories(${PYTHON_INCLUDE_DIRS})
set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} ${PYTHON_LDFLAGS}")
target_link_libraries(python ${PYTHON_LIBRARIES} weechat_plugins_scripts coverage_config)