aboutsummaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2024-10-02 04:44:37 +0200
committerTheo Buehler <tb@openbsd.org>2024-10-02 04:44:37 +0200
commit6a20a5841cb70424c2ebfa936047ef6ea3567b52 (patch)
treebd60fd521f592490dd7408d61cdd1dff3a20509f /ssl
parent415eb81ec3e3c2425668db7abde9153228d9f1de (diff)
downloadportable-6a20a5841cb70424c2ebfa936047ef6ea3567b52.tar.gz
portable-6a20a5841cb70424c2ebfa936047ef6ea3567b52.tar.bz2
portable-6a20a5841cb70424c2ebfa936047ef6ea3567b52.zip
Only use DLL_NAME_WITH_SOVERSION for cmake >= 3.27
Suggested by Viktor Szakats in #1084
Diffstat (limited to 'ssl')
-rw-r--r--ssl/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/ssl/CMakeLists.txt b/ssl/CMakeLists.txt
index 414fe07..f5288a9 100644
--- a/ssl/CMakeLists.txt
+++ b/ssl/CMakeLists.txt
@@ -92,7 +92,9 @@ set_target_properties(ssl PROPERTIES
92 EXPORT_NAME SSL 92 EXPORT_NAME SSL
93 VERSION ${SSL_VERSION} 93 VERSION ${SSL_VERSION}
94 SOVERSION ${SSL_MAJOR_VERSION} 94 SOVERSION ${SSL_MAJOR_VERSION}
95 DLL_NAME_WITH_SOVERSION TRUE 95 if(NOT CMAKE_VERSION VERSION_LESS 3.27.0)
96 DLL_NAME_WITH_SOVERSION TRUE
97 endif()
96) 98)
97 99
98target_include_directories( 100target_include_directories(