From fced7943558903bcd081cf8e78ef402862451e29 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 17 Feb 2021 06:07:20 +0100 Subject: [PATCH] Fix gost engine suffix (for MacOS X) On MacOS X, OpenSSL and cmake have different ideas on what suffix a dynamically loadable module should have. OpenSSL expects .dylib, while cmake uses .so by default. Fixed by explicitly telling cmake to use the same suffix as for shared libraries. --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c7c3ec9..c32b90f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -276,7 +276,10 @@ add_library(gost_core STATIC ${GOST_LIB_SOURCE_FILES}) set_target_properties(gost_core PROPERTIES POSITION_INDEPENDENT_CODE ON) add_library(gost_engine MODULE ${GOST_ENGINE_SOURCE_FILES}) -set_target_properties(gost_engine PROPERTIES PREFIX "" OUTPUT_NAME "gost") +# Set the suffix explicitly to adapt to OpenSSL's idea of what a +# module suffix should be +set_target_properties(gost_engine PROPERTIES + PREFIX "" OUTPUT_NAME "gost" SUFFIX ${CMAKE_SHARED_LIBRARY_SUFFIX}) target_link_libraries(gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY}) set(GOST_SUM_SOURCE_FILES -- 2.39.2