aboutsummaryrefslogtreecommitdiffhomepage
path: root/gRPC-Core.podspec
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-09-19 17:56:42 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-09-19 18:03:17 -0700
commit37b9b9e8fd60aa011b8b49b17498d86393d0fcf0 (patch)
tree544574dc563c4286c48e62f68f0f79917b147a65 /gRPC-Core.podspec
parentf6e7b778c42da01610f914271ccddee49becb2fa (diff)
Rename the openssl framework to openssl_grpc to avoid conflict
Diffstat (limited to 'gRPC-Core.podspec')
-rw-r--r--gRPC-Core.podspec3
1 files changed, 2 insertions, 1 deletions
diff --git a/gRPC-Core.podspec b/gRPC-Core.podspec
index 5a82a4200a..e3914df9f7 100644
--- a/gRPC-Core.podspec
+++ b/gRPC-Core.podspec
@@ -181,7 +181,7 @@ Pod::Spec.new do |s|
ss.header_mappings_dir = '.'
ss.libraries = 'z'
ss.dependency "#{s.name}/Interface", version
- ss.dependency 'BoringSSL-GRPC', '0.0.1'
+ ss.dependency 'BoringSSL-GRPC', '0.0.2'
ss.dependency 'nanopb', '~> 0.3'
ss.compiler_flags = '-DGRPC_SHADOW_BORINGSSL_SYMBOLS'
@@ -1307,5 +1307,6 @@ Pod::Spec.new do |s|
s.prepare_command = <<-END_OF_COMMAND
find src/core/ -type f ! -path '*.grpc_back' -print0 | xargs -0 -L1 sed -E -i'.grpc_back' 's;#include "(pb(_.*)?\\.h)";#include <nanopb/\\1>;g'
find src/core/ -type f -path '*.grpc_back' -print0 | xargs -0 rm
+ find src/core/ -type f -path '*.h' -or -path '*.cc' -print0 | xargs -0 -L1 sed -E -i'.grpc_back' 's;#include <openssl/;#include <openssl_grpc/;g'
END_OF_COMMAND
end