forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct Windows build defects noted with recent version updates (envo…
…yproxy#10469) - Pick up curl-7_69_1 - Patch curl to revert change to cmake_minimum_required - latest version of curl added a maximum version of cmake 3.16 - Pick up cares-1_16_0 - Toggle crosstool build to avoid possibly injecting wrongly assumed flags (/MD or -MD dynamic linkage override of our /MT static build) Signed-off-by: Sunjay Bhatia <[email protected]> Signed-off-by: William A Rowe Jr <[email protected]> Co-authored-by: Sunjay Bhatia <[email protected]> Co-authored-by: William A Rowe Jr <[email protected]>
- Loading branch information
1 parent
95bbc54
commit 0b48007
Showing
5 changed files
with
25 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Curl 7.69.1 introduces a range-bound cmake revisions between 3.0 and 3.16 | ||
# but this causes the Win32 build to be broken (and is unwise as cmake | ||
# has already released 3.17) | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index b13616fc7..8b6d77542 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -38,8 +38,7 @@ | ||
# To check: | ||
# (From Daniel Stenberg) The cmake build selected to run gcc with -fPIC on my box while the plain configure script did not. | ||
# (From Daniel Stenberg) The gcc command line use neither -g nor any -O options. As a developer, I also treasure our configure scripts's --enable-debug option that sets a long range of "picky" compiler options. | ||
-cmake_minimum_required(VERSION 3.0...3.16 FATAL_ERROR) | ||
- | ||
+cmake_minimum_required(VERSION 3.0 FATAL_ERROR) | ||
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake;${CMAKE_MODULE_PATH}") | ||
include(Utilities) | ||
include(Macros) |
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
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