From 4345bbb1e892197ffd4c698a443c7af734174e3d Mon Sep 17 00:00:00 2001 From: Mark Vainomaa Date: Sat, 10 Nov 2018 02:27:44 +0200 Subject: [PATCH] Sort-of fix curl build --- pkgs/curl/build.sh | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pkgs/curl/build.sh b/pkgs/curl/build.sh index 1bf9e2b..d1bd2ce 100755 --- a/pkgs/curl/build.sh +++ b/pkgs/curl/build.sh @@ -23,7 +23,19 @@ build () { --enable-versioned-symbols \ --enable-threaded-resolver \ --disable-ldap \ - --disable-ldaps + --disable-ldaps \ + --without-libidn2 \ + --without-rtmp \ + --without-libmetalink \ + --without-libpsl \ + --without-gssapi \ + --without-ssl + + # TODO: figure out why compiling with SSL is broken. + # when SSL is enabled, libtool tries to open + # /usr/lib/libcrypto.la (which is not present or + # rather not meant to be used at all by this build + # process). I wasted 2 hours on debugging this. make }