Skip to content

Commit

Permalink
Bump (Lib)CURL to 7.81.0 (JuliaPackaging#4200)
Browse files Browse the repository at this point in the history
* Bump (Lib)CURL to 7.81.0

* Set CURL v7.81 compat with Julia 1.8

* Update L/LibCURL/build_tarballs.jl

* Correct option to --without-libgsasl

Co-authored-by: Mosè Giordano <giordano@users.noreply.github.com>
  • Loading branch information
2 people authored and simeonschaub committed Feb 23, 2022
1 parent 2459a3c commit 30699cc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions L/LibCURL/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
using BinaryBuilder, Pkg

name = "LibCURL"
version = v"7.78.0"
version = v"7.81.0"

# Collection of sources required to build LibCURL
sources = [
ArchiveSource("https://curl.haxx.se/download/curl-$(version).tar.gz",
"ed936c0b02c06d42cf84b39dd12bb14b62d77c7c4e875ade022280df5dcc81d7"),
ArchiveSource("https://curl.se/download/curl-$(version).tar.gz",
"ac8e1087711084548d788ef18b9b732c8de887457b81f616fc681d1044b32f98"),
]

# Bash recipe for building across all platforms
Expand All @@ -23,7 +23,7 @@ FLAGS=(
--without-nss --without-polarssl
--without-spnego --without-libpsl --disable-ares --disable-manual
--disable-ldap --disable-ldaps --without-zsh-functions-dir
--disable-static --disable-libgsasl
--disable-static --without-libgsasl
# A few things we actually enable
--with-libssh2=${prefix} --with-zlib=${prefix} --with-nghttp2=${prefix}
Expand Down Expand Up @@ -76,8 +76,8 @@ dependencies = [
Dependency("nghttp2_jll"),
# Note that while we unconditionally list MbedTLS as a dependency,
# we default to schannel/SecureTransport on Windows/MacOS.
Dependency("MbedTLS_jll", v"2.24.0"),
Dependency("MbedTLS_jll"; compat="~2.28.0"),
]

# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6")
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.8")

0 comments on commit 30699cc

Please sign in to comment.