Skip to content

Commit 1b52557

Browse files
authored
Merge pull request #130 from clux/fix-curl-8.6
Fix build of curl 8.6
2 parents 4d9c6c2 + 76a0217 commit 1b52557

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ RUN chmod a+X /root
5353
# Convenience list of versions and variables for compilation later on
5454
# This helps continuing manually if anything breaks.
5555
ENV SSL_VER="1.1.1w" \
56-
CURL_VER="8.4.0" \
56+
CURL_VER="8.6.0" \
5757
ZLIB_VER="1.3.1" \
5858
PQ_VER="11.12" \
5959
SQLITE_VER="3450100" \
@@ -104,7 +104,7 @@ RUN curl -sSL https://curl.se/download/curl-$CURL_VER.tar.gz | tar xz && \
104104
CC="musl-gcc -fPIC -pie" LDFLAGS="-L$PREFIX/lib" CFLAGS="-I$PREFIX/include" ./configure \
105105
--enable-shared=no --with-zlib --enable-static=ssl --enable-optimize --prefix=$PREFIX \
106106
--with-ca-path=/etc/ssl/certs/ --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt --without-ca-fallback \
107-
--with-openssl && \
107+
--with-openssl --without-libpsl && \
108108
make -j$(nproc) curl_LDFLAGS="-all-static" && make install && \
109109
cd .. && rm -rf curl-$CURL_VER
110110

0 commit comments

Comments
 (0)