Commit da5ff779 authored by Max Kellermann's avatar Max Kellermann

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

parent e7da5b10
...@@ -5,6 +5,8 @@ ver 0.22.5 (not yet released) ...@@ -5,6 +5,8 @@ ver 0.22.5 (not yet released)
- iso9660: another fix for unaligned reads - iso9660: another fix for unaligned reads
* output * output
- httpd: error handling on Windows improved - httpd: error handling on Windows improved
* Windows:
- enable https:// support (via Schannel)
ver 0.22.4 (2021/01/21) ver 0.22.4 (2021/01/21)
* protocol * protocol
......
...@@ -407,6 +407,9 @@ curl = AutotoolsProject( ...@@ -407,6 +407,9 @@ curl = AutotoolsProject(
'--disable-progress-meter', '--disable-progress-meter',
'--disable-alt-svc', '--disable-alt-svc',
'--without-gnutls', '--without-nss', '--without-libssh2', '--without-gnutls', '--without-nss', '--without-libssh2',
# native Windows SSL/TLS support, option ignored on non-Windows builds
'--with-schannel',
], ],
patches='src/lib/curl/patches', patches='src/lib/curl/patches',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment