Skip to content

Commit 58b57fc

Browse files
Matthew Youngzaucy
authored andcommitted
Removing references to OpenSSL because OpenSSL references break bazel query for targets that rely on boost.asio due to the fact that OpenSSL is not in BCR yet.
1 parent d00386d commit 58b57fc

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

BUILD.bazel

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@ load("@bazel_skylib//rules:write_file.bzl", "write_file")
55
string_flag(
66
name = "ssl",
77
visibility = ["//visibility:public"],
8-
values = ["no_ssl", "openssl", "boringssl"],
8+
values = ["no_ssl", "boringssl"], # OpenSSL not in BCR yet.
99
build_setting_default = "no_ssl",
1010
)
1111

1212
config_setting(name = "no_ssl", flag_values = {":ssl": "no_ssl"})
13-
config_setting(name = "openssl", flag_values = {":ssl": "openssl"})
1413
config_setting(name = "boringssl", flag_values = {":ssl": "boringssl"})
1514

1615
write_file(
@@ -78,7 +77,6 @@ cc_library(
7877
"@boost.type_traits",
7978
"@boost.utility",
8079
] + select({
81-
":openssl": ["@openssl//:ssl"],
8280
":boringssl": ["@boringssl//:ssl"],
8381
":no_ssl": [],
8482
}),

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "boost.asio",
3-
version = "1.83.0.bzl.3",
3+
version = "1.83.0.bzl.4",
44
compatibility_level = 108300,
55
)
66

0 commit comments

Comments
 (0)