We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd6dde2 commit 13bac97Copy full SHA for 13bac97
cdk/cmake/ssl.cmake
@@ -565,7 +565,16 @@ function(get_lib_file LIB_VAR SONAME_VAR LIB)
565
566
#message("== lib_soname: ${lib_soname}")
567
568
- set(${SONAME_VAR} "${lib_soname}" PARENT_SCOPE)
+ #
569
+ # Note: We observed that for openssl library, the soname extracted is
570
+ # sometime identical to the original name, which breaks logic that later
571
+ # creates the soname link. Thus in this case we do not set soname and do
572
+ # not create soname link.
573
574
+
575
+ if(NOT lib_soname STREQUAL lib_name)
576
+ set(${SONAME_VAR} "${lib_soname}" PARENT_SCOPE)
577
+ endif()
578
579
endif()
580
0 commit comments