From 86859267f01988eef74ff9f44d640489b5ed3472 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Tue, 3 Dec 2024 16:23:46 +0200 Subject: [PATCH] ports/curl: remove libcurl.la file and use /dev/urandom --- ports/curl/build.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ports/curl/build.sh b/ports/curl/build.sh index 963e739c..a3edd808 100755 --- a/ports/curl/build.sh +++ b/ports/curl/build.sh @@ -8,9 +8,14 @@ CONFIGURE_OPTIONS=( '--disable-threaded-resolver' '--disable-ipv6' '--disable-docs' + '--disable-ntlm' '--with-openssl' '--with-zlib' - '--with-random=/dev/random' '--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt' '--without-ca-path' ) + +install() { + make install DESTDIR="$BANAN_SYSROOT" || exit 1 + rm -f $BANAN_SYSROOT/usr/lib/libcurl.la +}