diff options
author | Theo Buehler <tb@openbsd.org> | 2024-10-02 05:19:48 +0200 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2024-10-02 05:19:48 +0200 |
commit | 92528bdef2c25ea8538fa769bf0df1de7b7899ff (patch) | |
tree | bd60fd521f592490dd7408d61cdd1dff3a20509f /crypto | |
parent | c169d7e61e39cfdb836e1b0af3618af514defec5 (diff) | |
parent | 6a20a5841cb70424c2ebfa936047ef6ea3567b52 (diff) | |
download | portable-92528bdef2c25ea8538fa769bf0df1de7b7899ff.tar.gz portable-92528bdef2c25ea8538fa769bf0df1de7b7899ff.tar.bz2 portable-92528bdef2c25ea8538fa769bf0df1de7b7899ff.zip |
Land #1100 - mop up dll name breakage
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index c4f1af5..59939cb 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt | |||
@@ -850,7 +850,9 @@ set_target_properties(crypto PROPERTIES | |||
850 | EXPORT_NAME Crypto | 850 | EXPORT_NAME Crypto |
851 | VERSION ${CRYPTO_VERSION} | 851 | VERSION ${CRYPTO_VERSION} |
852 | SOVERSION ${CRYPTO_MAJOR_VERSION} | 852 | SOVERSION ${CRYPTO_MAJOR_VERSION} |
853 | DLL_NAME_WITH_SOVERSION TRUE | 853 | if(NOT CMAKE_VERSION VERSION_LESS 3.27.0) |
854 | DLL_NAME_WITH_SOVERSION TRUE | ||
855 | endif() | ||
854 | ) | 856 | ) |
855 | 857 | ||
856 | target_include_directories( | 858 | target_include_directories( |