Skip to content

Commit

Permalink
[LibCURL_jll] Do not load OpenSSL_jll on macOS and Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed May 12, 2024
1 parent d8ba63d commit 61c4d74
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion stdlib/LibCURL_jll/src/LibCURL_jll.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
## dummy stub for https://github.com/JuliaBinaryWrappers/LibCURL_jll.jl

baremodule LibCURL_jll
using Base, Libdl, nghttp2_jll, LibSSH2_jll, OpenSSL_jll, Zlib_jll
using Base, Libdl, nghttp2_jll, LibSSH2_jll, Zlib_jll
if !(Sys.iswindows() || Sys.isapple())
# On Windows and macOS we use system SSL/crypto libraries
using OpenSSL_jll
end

const PATH_list = String[]
const LIBPATH_list = String[]
Expand Down

0 comments on commit 61c4d74

Please sign in to comment.