Sort-of fix curl build

This commit is contained in:
Mark Vainomaa 2018-11-10 02:27:44 +02:00
parent 36386032f9
commit 4345bbb1e8
Signed by: mikroskeem
GPG Key ID: 1B3F9523B542D315
1 changed files with 13 additions and 1 deletions

View File

@ -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
}