From mboxrd@z Thu Jan 1 00:00:00 1970 From: tobias.geerinckx.rice@gmail.com Subject: [PATCH] gnu: lynx: Support HTTPS (SSL) connections Date: Fri, 4 Mar 2016 03:37:46 +0100 Message-ID: <1457059066-8060-1-git-send-email-tobias.geerinckx.rice@gmail.com> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51660) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1abfdD-0003mT-6Z for guix-devel@gnu.org; Thu, 03 Mar 2016 21:38:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1abfdA-0002BV-1a for guix-devel@gnu.org; Thu, 03 Mar 2016 21:38:19 -0500 Received: from mail-wm0-x229.google.com ([2a00:1450:400c:c09::229]:36313) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1abfd9-00028p-PZ for guix-devel@gnu.org; Thu, 03 Mar 2016 21:38:15 -0500 Received: by mail-wm0-x229.google.com with SMTP id n186so15688702wmn.1 for ; Thu, 03 Mar 2016 18:38:14 -0800 (PST) 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: guix-devel@gnu.org From: Tobias Geerinckx-Rice * gnu/packages/lynx.scm (lynx)[inputs]: Add 'openssl'. [arguments]: Convert to list; add configure flag for SSL support. --- gnu/packages/lynx.scm | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/gnu/packages/lynx.scm b/gnu/packages/lynx.scm index 3182b3e..7e1ef1d 100644 --- a/gnu/packages/lynx.scm +++ b/gnu/packages/lynx.scm @@ -48,24 +48,28 @@ ("libidn" ,libidn) ("gnutls" ,gnutls) ("libgcrypt" ,libgcrypt) + ("openssl" ,openssl) ("unzip" ,unzip) ("zlib" ,zlib) ("gzip" ,gzip) ("bzip2" ,bzip2))) (arguments - `(#:configure-flags '("--with-pkg-config" - "--with-screen=ncurses" - "--with-zlib" - "--with-bzlib" - "--with-gnutls" - ;; "--with-socks5" ; XXX TODO - "--enable-widec" - "--enable-ascii-ctypes" - "--enable-local-docs" - "--enable-htmlized-cfg" - "--enable-gzip-help" - "--enable-nls" - "--enable-ipv6") + `(#:configure-flags + (list "--with-pkg-config" + "--with-screen=ncurses" + "--with-zlib" + "--with-bzlib" + "--with-gnutls" + (string-append "--with-ssl=" + (assoc-ref %build-inputs "openssl")) + ;; "--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 -- 2.6.3