Skip to content

Commit 72c80da

Browse files
committed
maybe
1 parent bf80456 commit 72c80da

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

deps/curl/overlay/curl.BUILD.bazel

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@ load(
1818
"LIB_CURLU_SRCS_LINUX_ARM64",
1919
)
2020

21-
SO_VERSION = "4.8.0"
22-
2321
package(
2422
default_package_metadata = [":license"],
2523
default_visibility = ["@@//packages:__subpackages__"],
2624
)
2725

26+
VERSION = "8.16.0"
27+
28+
SO_VERSION = "4.8.0"
29+
2830
license(
2931
name = "license",
3032
# The "curl" license is a specially designated type.
@@ -33,7 +35,6 @@ license(
3335
visibility = ["//visibility:public"],
3436
)
3537

36-
VERSION = "8.16.0"
3738
SONAME = "libcurl.so.%s" % VERSION
3839

3940
PUBLIC_HEADERS = [
@@ -99,6 +100,7 @@ cc_binary(
99100
":curl",
100101
"@nghttp2//:nghttp2_shared",
101102
"@openssl//:openssl_shared",
103+
"@zlib//:z",
102104
],
103105
linkstatic = False,
104106
linkopts = select({
@@ -145,7 +147,7 @@ cc_library(
145147
"-I.",
146148
] + select({
147149
"@platforms//os:linux": [
148-
"-fvisibility=hidden",
150+
# XXXX "-fvisibility=hidden",
149151
"-O2",
150152
],
151153
"@platforms//os:macos": [

0 commit comments

Comments
 (0)