python/build/libs.py: enable CURL/schannel support on Windows

Closes https://github.com/MusicPlayerDaemon/MPD/issues/1031
This commit is contained in:
Max Kellermann 2021-02-07 21:56:18 +01:00
parent e7da5b104d
commit da5ff779c6
2 changed files with 5 additions and 0 deletions

2
NEWS
View File

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

View File

@ -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',