-
Notifications
You must be signed in to change notification settings - Fork 610
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lang/dotnet: Correctly link to base OpenSSL
No revision is bumped because this change does not completely fix the dependency on ports OpenSSL which crept in recent updates.
- Loading branch information
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- src/runtime/src/native/libs/System.Security.Cryptography.Native/CMakeLists.txt.orig 2025-01-21 19:57:31 UTC | ||
+++ src/runtime/src/native/libs/System.Security.Cryptography.Native/CMakeLists.txt | ||
@@ -11,6 +11,9 @@ add_definitions(-DOPENSSL_API_COMPAT=0x10100000L) | ||
|
||
add_definitions(-DOPENSSL_API_COMPAT=0x10100000L) | ||
|
||
+if(CMAKE_SYSTEM_NAME STREQUAL FreeBSD) | ||
+ set(OPENSSL_ROOT_DIR /usr) | ||
+endif() | ||
include(${CMAKE_CURRENT_LIST_DIR}/extra_libs.cmake) | ||
|
||
set(NATIVE_LIBS_EXTRA) |