summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2021-02-07 21:56:18 +0100
committerMax Kellermann <max@musicpd.org>2021-02-07 21:58:08 +0100
commitda5ff779c6485e9e490515ac68f1e3b93fc90c90 (patch)
tree33f9b1f7750db27d22335932d83b0e09303b7e28
parente7da5b104d440940aad897567d0b54009eae4a84 (diff)
python/build/libs.py: enable CURL/schannel support on Windows
Closes https://github.com/MusicPlayerDaemon/MPD/issues/1031
-rw-r--r--NEWS2
-rw-r--r--python/build/libs.py3
2 files changed, 5 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 9bb3f60a0..843f55db1 100644
--- a/NEWS
+++ b/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
diff --git a/python/build/libs.py b/python/build/libs.py
index 517e892b3..e5277856c 100644
--- a/python/build/libs.py
+++ b/python/build/libs.py
@@ -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',