From: Richard Levitte Date: Wed, 17 Feb 2021 05:07:20 +0000 (+0100) Subject: Fix gost engine suffix (for MacOS X) X-Git-Tag: v3.0.0~41 X-Git-Url: http://wagner.pp.ru/gitweb/?a=commitdiff_plain;h=fced7943558903bcd081cf8e78ef402862451e29;p=openssl-gost%2Fengine.git 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. --- 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