-
Notifications
You must be signed in to change notification settings - Fork 575
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wolfSSL: Update to 5.7.2 * wolfSSL: Exclude failing platforms * wolfSSL: Try a fix for macOS * wolfSSL: Try the fix for macOS * wolfSSL: Fix Windows build --------- Co-authored-by: Viral B. Shah <[email protected]>
- Loading branch information
1 parent
efa0c57
commit 20fc2b1
Showing
2 changed files
with
30 additions
and
3 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,14 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index 4e6f05fc6..5b1c3cd74 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -2385,8 +2385,7 @@ target_link_libraries(wolfssl PUBLIC ${WOLFSSL_LINK_LIBS}) | ||
|
||
if(WIN32) | ||
# For Windows link ws2_32 | ||
- target_link_libraries(wolfssl PUBLIC | ||
- $<$<PLATFORM_ID:Windows>:ws2_32 crypt32>) | ||
+ target_link_libraries(wolfssl PUBLIC ws2_32 crypt32) | ||
elseif(APPLE) | ||
if(WOLFSSL_SYS_CA_CERTS) | ||
target_link_libraries(wolfssl PUBLIC |