From 43f7acff8b932b53f9cf9b1c8d9f8ab6ba7395a9 Mon Sep 17 00:00:00 2001 From: Chun-Hung Hsiao Date: Fri, 4 Aug 2017 18:29:25 -0700 Subject: [PATCH] Fixed `grpc_unsecure` CMake build failures due to non-standard openssl location. `grpc_unsecure` doesn't use openssl, but one of its source file accidently includes `openssl/rand.h`. Since `CMakeLists.txt` doesn't specify that `grpc_unsecure` requires openssl, the build would fail. This can be fixed by simply removing this header inclusion. Fixed #11600. --- src/core/ext/census/tracing.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/ext/census/tracing.c b/src/core/ext/census/tracing.c index 543a73c5ad4..823c681abf3 100644 --- a/src/core/ext/census/tracing.c +++ b/src/core/ext/census/tracing.c @@ -21,7 +21,6 @@ #include #include #include -#include #include "src/core/ext/census/mlog.h" void trace_start_span(const trace_span_context *span_ctxt,