-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(#9417) add grpc package version 1.44.0
* add grpc package version 1.44.0 * fix dependencies * fix
- Loading branch information
Showing
4 changed files
with
37 additions
and
2 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
26 changes: 26 additions & 0 deletions
26
recipes/grpc/all/patches/v1.44.x/001-disable-cppstd-override.patch
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,26 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index 7a97604b75..7ae815042f 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -222,21 +222,6 @@ if (NOT DEFINED CMAKE_C_STANDARD) | ||
set(CMAKE_C_STANDARD 99) | ||
endif() | ||
|
||
-# Add c++11 flags | ||
-if (NOT DEFINED CMAKE_CXX_STANDARD) | ||
- set(CMAKE_CXX_STANDARD 11) | ||
-else() | ||
- if (CMAKE_CXX_STANDARD LESS 11) | ||
- message(FATAL_ERROR "CMAKE_CXX_STANDARD is less than 11, please specify at least SET(CMAKE_CXX_STANDARD 11)") | ||
- endif() | ||
-endif() | ||
-if (NOT DEFINED CMAKE_CXX_STANDARD_REQUIRED) | ||
- set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
-endif() | ||
-if (NOT DEFINED CMAKE_CXX_EXTENSIONS) | ||
- set(CMAKE_CXX_EXTENSIONS OFF) | ||
-endif() | ||
- | ||
if (NOT DEFINED CMAKE_POSITION_INDEPENDENT_CODE) | ||
set(CMAKE_POSITION_INDEPENDENT_CODE TRUE) | ||
endif() |
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
versions: | ||
"1.44.0": | ||
folder: "all" | ||
"1.43.0": | ||
folder: "all" | ||
"1.42.0": | ||
|