aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/workspace.bzl
diff options
context:
space:
mode:
authorGravatar Yong Tang <yong.tang.github@outlook.com>2018-08-10 20:17:04 +0000
committerGravatar Yong Tang <yong.tang.github@outlook.com>2018-08-10 21:25:21 +0000
commit211f164edc633087c0c000c08f6e92343bc525bd (patch)
treeb1465a262456b7e9270f7eceea936586e998db5d /tensorflow/workspace.bzl
parent9a50467e57d81ce1e91089732eb482a9fe0ca68f (diff)
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>
Diffstat (limited to 'tensorflow/workspace.bzl')
-rw-r--r--tensorflow/workspace.bzl8
1 files changed, 4 insertions, 4 deletions
diff --git a/tensorflow/workspace.bzl b/tensorflow/workspace.bzl
index 4c36eda209..496a2488f8 100644
--- a/tensorflow/workspace.bzl
+++ b/tensorflow/workspace.bzl
@@ -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(