-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[grpc] Update grpc to 1.23.0 (#8109)
- Loading branch information
Showing
4 changed files
with
52 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index b3ca615..21b5aaf 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -171,7 +171,7 @@ elseif(UNIX) | ||
endif() | ||
|
||
if(WIN32 AND MSVC) | ||
- set(_gRPC_BASELIB_LIBRARIES wsock32 ws2_32 gdi32) | ||
+ set(_gRPC_BASELIB_LIBRARIES wsock32 ws2_32 gdi32 crypt32) | ||
endif() | ||
|
||
# Create directory for generated .proto files |
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,34 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index 1961995..d721654 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -4692,7 +4692,7 @@ if (gRPC_INSTALL) | ||
endif() | ||
|
||
|
||
-if (gRPC_BUILD_CODEGEN) | ||
+if (gRPC_BUILD_CODEGEN AND NOT gRPC_USE_PROTO_LITE) | ||
add_library(grpcpp_channelz | ||
src/cpp/server/channelz/channelz_service.cc | ||
src/cpp/server/channelz/channelz_service_plugin.cc | ||
@@ -4749,7 +4749,7 @@ foreach(_hdr | ||
endforeach() | ||
|
||
|
||
-if (gRPC_BUILD_CODEGEN) | ||
+if (gRPC_BUILD_CODEGEN AND NOT gRPC_USE_PROTO_LITE) | ||
|
||
if (gRPC_INSTALL) | ||
install(TARGETS grpcpp_channelz EXPORT gRPCTargets | ||
@@ -4758,9 +4758,9 @@ if (gRPC_INSTALL) | ||
ARCHIVE DESTINATION ${gRPC_INSTALL_LIBDIR} | ||
) | ||
endif() | ||
-endif (gRPC_BUILD_CODEGEN) | ||
+endif (gRPC_BUILD_CODEGEN AND NOT gRPC_USE_PROTO_LITE) | ||
|
||
-endif (gRPC_BUILD_CODEGEN) | ||
+endif (gRPC_BUILD_CODEGEN AND NOT gRPC_USE_PROTO_LITE) | ||
if (gRPC_BUILD_TESTS) | ||
|
||
if (gRPC_BUILD_CODEGEN) |
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,5 +1,5 @@ | ||
Source: grpc | ||
Version: 1.22.0 | ||
Version: 1.23.0 | ||
Build-Depends: zlib, openssl, protobuf, c-ares (!uwp) | ||
Homepage: https://github.com/grpc/grpc | ||
Description: An RPC library and framework |
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