You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module(name = "bzlmod-test")
bazel_dep(name = "curl", version = "8.7.1")
Any other information?
It seems to me that this module should have a dependency on boringssl to get https support. The BCR patch should also add USE_OPENSSL and HAVE_BORINGSSL and probably may another macros to local_defines.
The text was updated successfully, but these errors were encountered:
What happened?
I want to use the
curl
module withhttps
. But default this module disableshttps
support, but it provides ahttp_only
flag:bazel-central-registry/modules/curl/8.7.1/patches/add_build_file.patch
Lines 24 to 32 in 46c3c22
However, the flag has no effect. Whatever its setting
https
support is disabled.Version
Development (host) and target OS/architectures:
For now Linux on x86. Eventually I need this to work on Windows, macOS, and many Linux variants.
Output of
bazel --version
:Version of relevant rules from the
WORKSPACE
orMODULE.bazel
file:Language(s) and/or frameworks involved:
C++
How to reproduce
This program should work, but returns an error:
You also need a BUILD file:
And a
MODULE.bazel
fileAny other information?
It seems to me that this module should have a dependency on
boringssl
to gethttps
support. The BCR patch should also addUSE_OPENSSL
andHAVE_BORINGSSL
and probably may another macros tolocal_defines
.The text was updated successfully, but these errors were encountered: