From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44694) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fAb2n-0002dr-Lr for guix-patches@gnu.org; Mon, 23 Apr 2018 08:58:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fAb2i-0000OF-6n for guix-patches@gnu.org; Mon, 23 Apr 2018 08:58:09 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:56909) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fAb2i-0000Nz-1r for guix-patches@gnu.org; Mon, 23 Apr 2018 08:58:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fAb2f-00049S-P5 for guix-patches@gnu.org; Mon, 23 Apr 2018 08:58:03 -0400 Subject: [bug#31141] [PATCH] gnu: curl: Use mit-krb5 as GSSAPI implementation. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20180412224006.25134-1-sleep_walker@gnu.org> <20180421161017.25789-1-sleep_walker@gnu.org> Date: Mon, 23 Apr 2018 14:57:34 +0200 In-Reply-To: <20180421161017.25789-1-sleep_walker@gnu.org> ("=?UTF-8?Q?Tom=C3=A1=C5=A1_?= =?UTF-8?Q?=C4=8Cech?="'s message of "Sat, 21 Apr 2018 18:10:17 +0200") Message-ID: <87o9ia2i81.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: =?UTF-8?Q?Tom=C3=A1=C5=A1_?= =?UTF-8?Q?=C4=8Cech?= Cc: 31141@debbugs.gnu.org Hello, Tom=C3=A1=C5=A1 =C4=8Cech skribis: > * 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 ae8b9600d..b5e1f52da 100644 > --- a/gnu/packages/curl.scm > +++ b/gnu/packages/curl.scm > @@ -38,6 +38,7 @@ > #:use-module (gnu packages groff) > #:use-module (gnu packages gsasl) > #:use-module (gnu packages guile) > + #:use-module (gnu packages kerberos) > #:use-module (gnu packages libidn) > #:use-module (gnu packages openldap) > #:use-module (gnu packages perl) > @@ -62,9 +63,9 @@ > (outputs '("out" > "doc")) ;1.2 MiB of man3 pages > (inputs `(("gnutls" ,gnutls) > - ("gss" ,gss) > ("libidn" ,libidn) > ("libssh2" ,libssh2) > + ("mit-krb5" ,mit-krb5) Could you explain the rationale? In general, if there=E2=80=99s a choice a= nd no compelling reason to do otherwise, we try to favor the GNU implementation (in this case, GNU GSS) by default. Thanks, Ludo=E2=80=99.