Skip to content
Snippets Groups Projects
Commit 43f7acff authored by Chun-Hung Hsiao's avatar Chun-Hung Hsiao
Browse files

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.
parent a39d9fa0
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
#include <grpc/census.h> #include <grpc/census.h>
#include <grpc/support/alloc.h> #include <grpc/support/alloc.h>
#include <grpc/support/log.h> #include <grpc/support/log.h>
#include <openssl/rand.h>
#include "src/core/ext/census/mlog.h" #include "src/core/ext/census/mlog.h"
void trace_start_span(const trace_span_context *span_ctxt, void trace_start_span(const trace_span_context *span_ctxt,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment