From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54988) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f6ktq-0001WF-W8 for guix-patches@gnu.org; Thu, 12 Apr 2018 18:41:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f6ktq-0002qZ-AJ for guix-patches@gnu.org; Thu, 12 Apr 2018 18:41:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:40833) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f6ktq-0002qO-7d for guix-patches@gnu.org; Thu, 12 Apr 2018 18:41:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f6ktq-0003NN-1y for guix-patches@gnu.org; Thu, 12 Apr 2018 18:41:02 -0400 Subject: [bug#31141] [PATCH] gnu: curl: Use mit-krb5 as GSSAPI implementation. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54385) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f6kt7-0001CT-HZ for guix-patches@gnu.org; Thu, 12 Apr 2018 18:40:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f6kt6-0002Gh-B1 for guix-patches@gnu.org; Thu, 12 Apr 2018 18:40:17 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:48543) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f6kt6-0002Gb-4J for guix-patches@gnu.org; Thu, 12 Apr 2018 18:40:16 -0400 From: =?UTF-8?Q?Tom=C3=A1=C5=A1_?= =?UTF-8?Q?=C4=8Cech?= Date: Fri, 13 Apr 2018 00:40:06 +0200 Message-Id: <20180412224006.25134-1-sleep_walker@gnu.org> 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: 31141@debbugs.gnu.org * gnu/packages/curl.scm (curl)[inputs]: Replace gss with mit-krb5. [arguments]: Help configure with locating mit-krb5. --- gnu/packages/curl.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm index fbf177d9d..38f7195ca 100644 --- a/gnu/packages/curl.scm +++ b/gnu/packages/curl.scm @@ -36,6 +36,7 @@ #:use-module (gnu packages golang) #:use-module (gnu packages groff) #:use-module (gnu packages gsasl) + #:use-module (gnu packages kerberos) #:use-module (gnu packages libidn) #:use-module (gnu packages openldap) #:use-module (gnu packages perl) @@ -60,9 +61,9 @@ (outputs '("out" "doc")) ;1.2 MiB of man3 pages (inputs `(("gnutls" ,gnutls) - ("gss" ,gss) ("libidn" ,libidn) ("libssh2" ,libssh2) + ("mit-krb5" ,mit-krb5) ("openldap" ,openldap) ("zlib" ,zlib))) (native-inputs @@ -81,7 +82,10 @@ (separator #f) ;single entry (files '("etc/ssl/certs/ca-certificates.crt"))))) (arguments - `(#:configure-flags '("--with-gnutls" "--with-gssapi") + `(#:configure-flags (list + "--with-gnutls" + (string-append "--with-gssapi=" + (assoc-ref %build-inputs "mit-krb5"))) ;; Add a phase to patch '/bin/sh' occurances in tests/runtests.pl #:phases (modify-phases %standard-phases -- 2.16.3