From 43f7acff8b932b53f9cf9b1c8d9f8ab6ba7395a9 Mon Sep 17 00:00:00 2001
From: Chun-Hung Hsiao <chhsiao@mesosphere.io>
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 543a73c5ad..823c681abf 100644
--- a/src/core/ext/census/tracing.c
+++ b/src/core/ext/census/tracing.c
@@ -21,7 +21,6 @@
 #include <grpc/census.h>
 #include <grpc/support/alloc.h>
 #include <grpc/support/log.h>
-#include <openssl/rand.h>
 #include "src/core/ext/census/mlog.h"
 
 void trace_start_span(const trace_span_context *span_ctxt,
-- 
GitLab