Skip to content

Commit

Permalink
add --without-libps
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Neale committed Jan 10, 2025
1 parent af55321 commit 317f76f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .builders/images/linux-aarch64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ RUN \
# curl
RUN \
DOWNLOAD_URL="https://curl.haxx.se/download/curl-{{version}}.tar.gz" \
VERSION="8.11.1" \
SHA256="a889ac9dbba3644271bd9d1302b5c22a088893719b72be3487bc3d401e5c4e80" \
VERSION="8.9.1" \
SHA256="291124a007ee5111997825940b3876b3048f7d31e73e9caa681b80fe48b2dcd5" \
RELATIVE_PATH="curl-{{version}}" \
bash install-from-source.sh \
--disable-manual \
Expand All @@ -159,6 +159,7 @@ RUN \
--without-gnutls \
--without-librtmp \
--without-libssh2 \
--without-libps \
--with-ssl=/usr/local \
&& rm /usr/local/bin/curl

Expand Down
5 changes: 3 additions & 2 deletions .builders/images/linux-x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ RUN \
# curl
RUN \
DOWNLOAD_URL="https://curl.haxx.se/download/curl-{{version}}.tar.gz" \
VERSION="8.11.1" \
SHA256="a889ac9dbba3644271bd9d1302b5c22a088893719b72be3487bc3d401e5c4e80" \
VERSION="8.9.1" \
SHA256="291124a007ee5111997825940b3876b3048f7d31e73e9caa681b80fe48b2dcd5" \
RELATIVE_PATH="curl-{{version}}" \
bash install-from-source.sh \
--disable-manual \
Expand All @@ -163,6 +163,7 @@ RUN \
--without-gnutls \
--without-librtmp \
--without-libssh2 \
--without-libps \
--with-ssl=/usr/local \
&& rm /usr/local/bin/curl

Expand Down
5 changes: 3 additions & 2 deletions .builders/images/macos-x86_64/builder_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ RELATIVE_PATH="libxslt-{{version}}" \

# curl
DOWNLOAD_URL="https://curl.haxx.se/download/curl-{{version}}.tar.gz" \
VERSION="8.11.1" \
SHA256="a889ac9dbba3644271bd9d1302b5c22a088893719b72be3487bc3d401e5c4e80" \
VERSION="8.9.1" \
SHA256="291124a007ee5111997825940b3876b3048f7d31e73e9caa681b80fe48b2dcd5" \
RELATIVE_PATH="curl-{{version}}" \
install-from-source \
--disable-manual \
Expand All @@ -89,6 +89,7 @@ RELATIVE_PATH="curl-{{version}}" \
--without-gnutls \
--without-librtmp \
--without-libssh2 \
--without-libps \
--with-ssl="${DD_PREFIX_PATH}"
# Remove the binary installed so that we consistenly use the same original `curl` binary
rm "${DD_PREFIX_PATH}/bin/curl"
Expand Down

0 comments on commit 317f76f

Please sign in to comment.