python/build/libs.py: enable CURL/schannel support on Windows
Closes https://github.com/MusicPlayerDaemon/MPD/issues/1031
This commit is contained in:
parent
e7da5b104d
commit
da5ff779c6
2
NEWS
2
NEWS
|
@ -5,6 +5,8 @@ ver 0.22.5 (not yet released)
|
|||
- iso9660: another fix for unaligned reads
|
||||
* output
|
||||
- httpd: error handling on Windows improved
|
||||
* Windows:
|
||||
- enable https:// support (via Schannel)
|
||||
|
||||
ver 0.22.4 (2021/01/21)
|
||||
* protocol
|
||||
|
|
|
@ -407,6 +407,9 @@ curl = AutotoolsProject(
|
|||
'--disable-progress-meter',
|
||||
'--disable-alt-svc',
|
||||
'--without-gnutls', '--without-nss', '--without-libssh2',
|
||||
|
||||
# native Windows SSL/TLS support, option ignored on non-Windows builds
|
||||
'--with-schannel',
|
||||
],
|
||||
|
||||
patches='src/lib/curl/patches',
|
||||
|
|
Loading…
Reference in New Issue