Updated dependencies

This commit is contained in:
Nikolay Borodin
2026-02-23 14:19:13 +02:00
parent 79e6c120fe
commit e0df1f25c1
+3 -3
View File
@@ -16,7 +16,7 @@ NGHTTP2_LDFLAGS=""
# WolfSSL
if ! test -f "${current_dir}/prefix/lib/libwolfssl.a"; then
echo -e "${blue}Building wolfssl...${nocolor}"
git clone --depth 1 --branch v5.8.2-stable https://github.com/wolfSSL/wolfssl wolfssl
git clone --depth 1 --branch v5.8.4-stable https://github.com/wolfSSL/wolfssl wolfssl
cd wolfssl
autoreconf -i
# FIXME: remove compiler crutches
@@ -37,7 +37,7 @@ if [[ ${ENABLE_NGHTTP2} -gt 0 ]]; then
NGHTTP2_LDFLAGS="-lnghttp2"
if ! test -f "${current_dir}/prefix/lib/libnghttp2.a"; then
echo -e "${blue}Building nghttp2...${nocolor}"
git clone --depth 1 --branch v1.67.1 https://github.com/nghttp2/nghttp2 nghttp2
git clone --depth 1 --branch v1.68.0 https://github.com/nghttp2/nghttp2 nghttp2
cd nghttp2
autoreconf -i
./configure --host=${host} --enable-lib-only --prefix=${current_dir}/prefix
@@ -56,7 +56,7 @@ fi
# Curl
if ! test -f "${current_dir}/prefix/lib/libcurl.a"; then
echo -e "${blue}Building curl...${nocolor}"
git clone --depth 1 --branch curl-8_16_0 https://github.com/curl/curl curl
git clone --depth 1 --branch curl-8_18_0 https://github.com/curl/curl curl
cd curl
autoreconf -i
if [[ ${ENABLE_NGHTTP2} -gt 0 ]]; then