From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33794) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ecJk1-000618-O3 for guix-patches@gnu.org; Thu, 18 Jan 2018 18:37:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ecJjy-0003NN-LF for guix-patches@gnu.org; Thu, 18 Jan 2018 18:37:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:54196) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ecJjy-0003NI-Hu for guix-patches@gnu.org; Thu, 18 Jan 2018 18:37:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ecJjy-000842-BG for guix-patches@gnu.org; Thu, 18 Jan 2018 18:37:02 -0500 Subject: [bug#30165] [PATCH] gnu: gnurl: Add '--with-ca-bundle' path to configure-flags. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55665) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ecJHp-00059j-Ni for guix-patches@gnu.org; Thu, 18 Jan 2018 18:07:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ecJHm-0004YV-He for guix-patches@gnu.org; Thu, 18 Jan 2018 18:07:57 -0500 Received: from aibo.runbox.com ([91.220.196.211]:56644) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ecJHm-0004XQ-AP for guix-patches@gnu.org; Thu, 18 Jan 2018 18:07:54 -0500 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1ecJHj-0002p4-Op for guix-patches@gnu.org; Fri, 19 Jan 2018 00:07:51 +0100 From: ng0+guixpatches@n0.is Date: Thu, 18 Jan 2018 23:07:27 +0000 Message-Id: <20180118230727.16742-1-ng0+guixpatches@n0.is> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30165@debbugs.gnu.org Cc: ng0 From: ng0 As a fork of cURL, gnURL on Guix needs to be made aware of the certificate store to prevent the well-known issue we have. * gnu/packages/gnunet.scm (gnurl)[configure-flags]: Add '--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt'. --- gnu/packages/gnunet.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm index 2d238febc..0ebfc9116 100644 --- a/gnu/packages/gnunet.scm +++ b/gnu/packages/gnunet.scm @@ -5,7 +5,7 @@ ;;; Copyright © 2015, 2017 Efraim Flashner ;;; Copyright © 2016 Ricardo Wurmus ;;; Copyright © 2016 Mark H Weaver -;;; Copyright © 2016, 2017 ng0 +;;; Copyright © 2016, 2017, 2018 ng0 ;;; ;;; This file is part of GNU Guix. ;;; @@ -205,7 +205,8 @@ authentication and support for SSL3 and TLS.") ("pkg-config" ,pkg-config) ("python" ,python-2))) (arguments - `(#:configure-flags (list "--disable-ntlm-wb") + `(#:configure-flags (list "--disable-ntlm-wb" + "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt") #:test-target "test" #:parallel-tests? #f #:phases -- 2.15.1