Update boringssl to 7f634429a04abc48e2eb041c81c5235816c96514

This fix udpates boringssl to 7f634429a04abc48e2eb041c81c5235816c96514
This update is necessary as it contains OpenSSL API SSL[_CTX]_set1_sigalgs[_list]:
https://boringssl-review.googlesource.com/c/boringssl/+/30304
which is necessary to build librdkafka without additional patching:
https://github.com/edenhill/librdkafka/issues/1896
(same issue with previous version of openssl and libressl)

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
Yong Tang 2018-08-10 20:17:04 +00:00
parent 9a50467e57
commit 211f164edc

View File

@ -521,11 +521,11 @@ def tf_workspace(path_prefix = "", tf_repo_name = ""):
tf_http_archive(
name = "boringssl",
urls = [
"https://mirror.bazel.build/github.com/google/boringssl/archive/45c4a87ae97eb95a8fc2906c035d6a8d0e02e1b8.tar.gz",
"https://github.com/google/boringssl/archive/45c4a87ae97eb95a8fc2906c035d6a8d0e02e1b8.tar.gz",
"https://mirror.bazel.build/github.com/google/boringssl/archive/7f634429a04abc48e2eb041c81c5235816c96514.tar.gz",
"https://github.com/google/boringssl/archive/7f634429a04abc48e2eb041c81c5235816c96514.tar.gz",
],
sha256 = "972e8d8a9d1daf9892fff7155312b1af46b4754446575a7b285e62f917424c78",
strip_prefix = "boringssl-45c4a87ae97eb95a8fc2906c035d6a8d0e02e1b8",
sha256 = "1188e29000013ed6517168600fc35a010d58c5d321846d6a6dfee74e4c788b45",
strip_prefix = "boringssl-7f634429a04abc48e2eb041c81c5235816c96514",
)
tf_http_archive(