-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patch
aws-sdk-cpp
to fix failures to find curl.
- Loading branch information
1 parent
daf9c82
commit 4bc0adb
Showing
3 changed files
with
22 additions
and
5 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,13 @@ | ||
diff --git a/toolchains/core-config.cmake b/toolchains/core-config.cmake | ||
index d90bfaf747..ab14402577 100644 | ||
--- a/toolchains/core-config.cmake | ||
+++ b/toolchains/core-config.cmake | ||
@@ -15,5 +15,8 @@ if (AWSSDK_CRYPTO_IN_SOURCE_BUILD) | ||
find_dependency(crypto) | ||
find_dependency(ssl) | ||
endif() | ||
+if("@ENABLE_CURL_CLIENT@") | ||
+ find_dependency(CURL) | ||
+endif() | ||
set(BUILD_SHARED_LIBS ${BUILD_SHARED_LIBS_PREV}) | ||
include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]") |
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