diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-08-14 22:25:30 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-08-14 22:25:30 +0200 |
commit | 5c3f1e4306f252c7dc397ac765caa288a57f99f1 (patch) | |
tree | b6345ad51cd8c443702a8f17c8539e43cc75df7c /gnu/packages/patches | |
parent | 2b3a10b6b5f2a48665cf4bfa27525c4caca175d9 (diff) | |
download | guix-5c3f1e4306f252c7dc397ac765caa288a57f99f1.tar guix-5c3f1e4306f252c7dc397ac765caa288a57f99f1.tar.gz |
gnu: sssd: Update to 1.16.4.
* gnu/packages/patches/sssd-curl-compat.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu/packages/sssd.scm (sssd): Update to 1.16.4.
[source](patches): Remove.
[arguments]: Enable fixed tests.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r-- | gnu/packages/patches/sssd-curl-compat.patch | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gnu/packages/patches/sssd-curl-compat.patch b/gnu/packages/patches/sssd-curl-compat.patch deleted file mode 100644 index ecab737153..0000000000 --- a/gnu/packages/patches/sssd-curl-compat.patch +++ /dev/null @@ -1,18 +0,0 @@ -Fix build with curl >= 7.62. Patch taken from upstream: - -https://pagure.io/SSSD/sssd/c/4d3841ca379afc01184453ba45ab3e75ffec60da?branch=sssd-1-16 - -diff --git a/src/util/tev_curl.c b/src/util/tev_curl.c -index 6a7a580..d70a429 100644 ---- a/src/util/tev_curl.c -+++ b/src/util/tev_curl.c -@@ -97,7 +97,9 @@ static errno_t curl_code2errno(CURLcode crv) - return ETIMEDOUT; - case CURLE_SSL_ISSUER_ERROR: - case CURLE_SSL_CACERT_BADFILE: -+#if LIBCURL_VERSION_NUM < 0x073e00 - case CURLE_SSL_CACERT: -+#endif - case CURLE_SSL_CERTPROBLEM: - return ERR_INVALID_CERT; - |