Skip to content

Commit bd2d5db

Browse files
committedJun 13, 2024··
cmake: allow SOVERSION override with CURL_LIBCURL_SOVERSION
Allow overriding SOVERSION with the new CMake option: `CURL_LIBCURL_SOVERSION=ON/OFF` For certain target platforms the shared libcurl library filename contains the SOVERSION. This new option allows to enable/disable this behavior manually. If set, it takes precedence over the default setting. Ref: #13898 Closes #13944
1 parent e9507bd commit bd2d5db

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎lib/CMakeLists.txt

+7
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,14 @@ if(BUILD_SHARED_LIBS)
201201
# up to v3.x and ELF from v3.x. I cannot imagine someone running CMake
202202
# on those ancient systems.
203203
CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
204+
set(soversion_default TRUE)
205+
else()
206+
set(soversion_default FALSE)
207+
endif()
208+
209+
option(CURL_LIBCURL_SOVERSION "Enable libcurl SOVERSION" ${soversion_default})
204210

211+
if(CURL_LIBCURL_SOVERSION)
205212
transform_makefile_inc("Makefile.soname" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.soname.cmake")
206213
include(${CMAKE_CURRENT_BINARY_DIR}/Makefile.soname.cmake)
207214

0 commit comments

Comments
 (0)
Please sign in to comment.