Fixed #501: disable extra libcurl dependencies
This commit is contained in:
parent
5c03f4a0be
commit
a3f662a3de
|
@ -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',
|
||||||
|
|
Loading…
Reference in New Issue