From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH 4/6] gnu: gnome-documents Date: Tue, 29 Mar 2016 22:25:27 +0200 Message-ID: <87poudghfs.fsf@gnu.org> References: <77ce1f6925efaed801f9918af4a8834d@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34839) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1al0Ci-0008RK-Uz for guix-devel@gnu.org; Tue, 29 Mar 2016 16:25:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1al0Cg-0001Qm-A5 for guix-devel@gnu.org; Tue, 29 Mar 2016 16:25:32 -0400 In-Reply-To: <77ce1f6925efaed801f9918af4a8834d@openmailbox.org> (rennes@openmailbox.org's message of "Sun, 28 Feb 2016 22:04:06 -0600") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: rennes@openmailbox.org Cc: guix-devel@gnu.org rennes@openmailbox.org skribis: > + `(#:configure-flags > + '("--with-ca-certificates=3D/etc/ssl/certs/ca-certificates.crt") AFAICS glib-networking uses GnuTLS, for which we already had such a setting (except that it can read all the .crt files from /etc/ssl/certs, not just one bundle.) > + (modify-phases %standard-phases > + (add-before 'check 'use-empty-ssl-cert-file > + (lambda _ > + ; Search for ca-certificates.crt files > + ; during the check phase. > + (setenv "SSL_CERT_FILE" "/dev/null") Does this really have an effect? This is the environment variable used by OpenSSL, but not GnuTLS. Otherwise LGTM. Thanks, Ludo=E2=80=99.