From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kei Kebreau Subject: [PATCH] gnu: lynx: Fix GnuTLS support. Date: Thu, 06 Oct 2016 20:48:31 -0400 Message-ID: <87oa2x3rxc.fsf@openmailbox.org> Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53270) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bsJYc-0004O2-0n for guix-devel@gnu.org; Thu, 06 Oct 2016 21:02:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bsJYX-0005FT-1g for guix-devel@gnu.org; Thu, 06 Oct 2016 21:02:37 -0400 Received: from mail2.openmailbox.org ([62.4.1.33]:33424) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bsJYW-0005Eo-Oo for guix-devel@gnu.org; Thu, 06 Oct 2016 21:02:32 -0400 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" To: guix-devel@gnu.org --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain HTTPS connections using lynx work on my machine with this patch. Would someone else like to see about this? --=-=-= Content-Type: text/plain Content-Disposition: attachment; filename=0001-gnu-lynx-Fix-GnuTLS-support.patch Content-Transfer-Encoding: quoted-printable From=20c18ab7b9c24f07ab86529d7f5f08f4dd21cea549 Mon Sep 17 00:00:00 2001 From: Kei Kebreau Date: Thu, 6 Oct 2016 20:38:39 -0400 Subject: [PATCH] gnu: lynx: Fix GnuTLS support. * gnu/packages/lynx.scm (lynx)[arguments]: Pass "--with-gnutls" in =2D-- gnu/packages/lynx.scm | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/gnu/packages/lynx.scm b/gnu/packages/lynx.scm index 3182b3e..71bed77 100644 =2D-- a/gnu/packages/lynx.scm +++ b/gnu/packages/lynx.scm @@ -53,19 +53,21 @@ ("gzip" ,gzip) ("bzip2" ,bzip2))) (arguments =2D `(#:configure-flags '("--with-pkg-config" =2D "--with-screen=3Dncurses" =2D "--with-zlib" =2D "--with-bzlib" =2D "--with-gnutls" =2D ;; "--with-socks5" ; XXX TODO =2D "--enable-widec" =2D "--enable-ascii-ctypes" =2D "--enable-local-docs" =2D "--enable-htmlized-cfg" =2D "--enable-gzip-help" =2D "--enable-nls" =2D "--enable-ipv6") + `(#:configure-flags + (let ((gnutls (assoc-ref %build-inputs "gnutls"))) + `("--with-pkg-config" + "--with-screen=3Dncurses" + "--with-zlib" + "--with-bzlib" + ,(string-append "--with-gnutls=3D" gnutls) + ;; "--with-socks5" ; XXX TODO + "--enable-widec" + "--enable-ascii-ctypes" + "--enable-local-docs" + "--enable-htmlized-cfg" + "--enable-gzip-help" + "--enable-nls" + "--enable-ipv6")) #:tests? #f ; no check target #:phases (alist-replace 'install =2D-=20 2.10.0 --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJX9vDfAAoJEOal7jwZRnoNKiwQALTqypqiExkQypxySmwcRTs+ IC7D00jwQ6/IO+ZF8GkwgdQ1dQNbVDNfcLjgZMXkukpC7pORexO4NZK/Yu1hVQ6H 2kZyLXP9S0tS1b9VlRf1bKnM0VqPL5YoRiLKpNoh7rjUmjMzzLFFFc6YjLvzZ5CE uR3S2Sbaz3a9zefGrWYDVvAqiW6RKxLyveRbMFyLHDwCCBaWmEm3wncEpN7g40QN /66MZ1TkkI2OOdbGIaJkQ/b/99b7DFguBjxo3tctfXH/uUxKvj8L0UbXrbBsslTT HMxBnf8nuqujoGWp85e+5rgpYV/c5VP2KlJZ18P+wxbRVM1eeLL8KPoV+ZcNlrJk 2QAIPe3AMNodn1w9KFts2vz4dNpCs3Vxew81wSc/3ODHW8PFg0MpMMt8A0UMJ5OT zfy2B7lvD7GJC6yO3zUfUbHRA88k7zW9osprhdCULv7Wtf2o6E0yMPjhBbqramPd KMKecdzM5nQEadlOoVy5EQBYCBEiFoaqIJK0ohQxP95kz/AO2LsSdMOe8Jx6KQUP wSjaZK9mrAi89q4f36PqcSlvuUgHVmrnkL0KyjTDXxvi9IRW8P71oeLNOdgK+cHr EVkAUyDDRI+85F/kKpfZzpFGpKXqitKdnNcbV1sT1Rc2jceHomDEakrbuGKuVlZu nDCqaO81+TUtL4rAO8BJ =Atk1 -----END PGP SIGNATURE----- --==-=-=--