curl, bump version, enable support for ssh type protocols (#6089)

This commit is contained in:
Schrijvers Luc
2021-07-23 09:31:01 +02:00
committed by GitHub
parent 25ae0b9550
commit ddd3004db9

View File

@@ -11,7 +11,7 @@ COPYRIGHT="1996-2020 Daniel Stenberg"
LICENSE="Curl"
REVISION="1"
SOURCE_URI="https://curl.haxx.se/download/curl-$portVersion.tar.bz2"
CHECKSUM_SHA256="7a8e184d7d31312c4ebf6a8cb59cd757e61b2b2833a9ed4f9bf708066e7695e9"
CHECKSUM_SHA256="98530b317dc95ccb324bbe4f834f07bb642fbc393b794ddf3434f246a71ea44a"
ADDITIONAL_FILES="curl.rdef"
ARCHITECTURES="x86_gcc2 x86 x86_64 ?arm ?ppc sparc m68k"
@@ -30,6 +30,7 @@ REQUIRES="
haiku$secondaryArchSuffix
ca_root_certificates
lib:libnghttp2$secondaryArchSuffix
lib:libssh2$secondaryArchSuffix
lib:libssl$secondaryArchSuffix
lib:libz$secondaryArchSuffix
"
@@ -49,6 +50,7 @@ REQUIRES_devel="
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libnghttp2$secondaryArchSuffix
devel:libssh2$secondaryArchSuffix
devel:libssl$secondaryArchSuffix
devel:libz$secondaryArchSuffix
"
@@ -88,6 +90,7 @@ BUILD()
autoconf
CPPFLAGS=-D_BSD_SOURCE runConfigure ./configure \
--enable-ipv6 --enable-manual \
--with-openssl --with-libssh2 \
--with-ca-bundle="$certsDir/CARootCertificates.pem"
make $jobArgs
}