We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91d4243 commit 83a4fd7Copy full SHA for 83a4fd7
config.sh
@@ -45,11 +45,14 @@ function build_curl {
45
if [ -e curl-stamp ]; then return; fi
46
local flags="--prefix=$BUILD_PREFIX"
47
if [ -n "$IS_MACOS" ]; then
48
- flags="$flags --with-darwinssl"
+ flags="$flags --with-darwinssl --with-ca-bundle=${BUILD_PREFIX}/ssl/cacert.pem"
49
else # manylinux
50
flags="$flags --with-ssl"
51
# yum_install perl-IPC-Cmd
52
# yum_install perl-Pod-Html
53
+ wget https://curl.se/ca/cacert.pem
54
+ mkdir -p ${BUILD_PREFIX}/ssl
55
+ mv cacert.pem ${BUILD_PREFIX}/ssl
56
build_openssl
57
fi
58
flags="$flags --without-zstd"
0 commit comments