unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 98bff5071214d2127acf9ce5139920ccaf272f11 877 bytes (raw)
name: gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
 
Kodi doesn't set the CAPATH and CAINFO parameters for libcurl. To make HTTPS
connections work we can set them based on SSL_CERT_DIR and SSL_CERT_FILE.

FIXME: This shouldn't be necessary anymore, see libcurl-use-ssl-cert-env.patch

--- a/xbmc/filesystem/CurlFile.cpp
+++ b/xbmc/filesystem/CurlFile.cpp
@@ -626,5 +626,9 @@
   if (!m_cipherlist.empty())
     g_curlInterface.easy_setopt(h, CURLOPT_SSL_CIPHER_LIST, m_cipherlist.c_str());
 
+  // Load certificate data from environment paths
+  g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_CAPATH, getenv("SSL_CERT_DIR"));
+  g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_CAINFO, getenv("SSL_CERT_FILE"));
+
   // enable HTTP2 support. default: CURL_HTTP_VERSION_1_1. Curl >= 7.62.0 defaults to CURL_HTTP_VERSION_2TLS
   g_curlInterface.easy_setopt(h, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0);
-
 }

debug log:

solving 98bff50712 ...
found 98bff50712 in https://yhetil.org/guix-patches/20200114165921.epqysoaydxxqm5ye@zdrowyportier.kadziolka.net/
found 2f60737e30 in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 2f60737e309178f187fe8ef532ee309e13342c62	gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch

applying [1/1] https://yhetil.org/guix-patches/20200114165921.epqysoaydxxqm5ye@zdrowyportier.kadziolka.net/
diff --git a/gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch b/gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch
index 2f60737e30..98bff50712 100644

Checking patch gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch...
Applied patch gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch cleanly.

index at:
100644 98bff5071214d2127acf9ce5139920ccaf272f11	gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).