Fixed #501: disable extra libcurl dependencies

This commit is contained in:
renaud gaudin 2021-10-26 18:13:15 +02:00
parent 5c03f4a0be
commit a3f662a3de
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,8 @@ class LibCurl(Dependency):
dependencies = ['zlib'] dependencies = ['zlib']
configure_option = " ".join( configure_option = " ".join(
["--without-{}".format(p) ["--without-{}".format(p)
for p in ('libssh2', 'ssl', 'libmetalink', 'librtmp')] + for p in ('libssh2', 'ssl', 'libmetalink', 'librtmp',
'nghttp2', 'libidn2', 'brotli')] +
["--disable-{}".format(p) ["--disable-{}".format(p)
for p in ('ftp', 'file', 'ldap', 'ldaps', 'rtsp', 'dict', for p in ('ftp', 'file', 'ldap', 'ldaps', 'rtsp', 'dict',
'telnet', 'tftp', 'pop3', 'imap', 'smb', 'smtp', 'telnet', 'tftp', 'pop3', 'imap', 'smb', 'smtp',