Skip to content

Commit 99d9fd8

Browse files
author
Matthew Young
committed
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 f23063b commit 99d9fd8

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Diff for: BUILD.bazel

+1-3
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
}),

Diff for: MODULE.bazel

+1-1
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)