From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Darrington Subject: [PATCH 4/4] gnu: libtirpc: Remove the --disable-gssapi configure flag. Date: Sat, 27 Aug 2016 20:19:39 +0200 Message-ID: <1472321979-10150-4-git-send-email-john@darrington.wattle.id.au> References: <1472321979-10150-1-git-send-email-john@darrington.wattle.id.au> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45243) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bdiD4-0005S7-JI for guix-devel@gnu.org; Sat, 27 Aug 2016 14:20:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bdiD2-0005Yg-GG for guix-devel@gnu.org; Sat, 27 Aug 2016 14:20:01 -0400 In-Reply-To: <1472321979-10150-1-git-send-email-john@darrington.wattle.id.au> 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 Cc: John Darrington From: John Darrington * gnu/packages/onc-rpc.scm (libtirpc)[arguments]: Remove the --disable-gssapi configure flag. [inputs]: Add mit-krb5 --- gnu/packages/onc-rpc.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gnu/packages/onc-rpc.scm b/gnu/packages/onc-rpc.scm index d9b2f9d..d5858e8 100644 --- a/gnu/packages/onc-rpc.scm +++ b/gnu/packages/onc-rpc.scm @@ -20,6 +20,7 @@ #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) + #:use-module (gnu packages mit-krb5) #:use-module (guix build-system gnu)) (define-public libtirpc @@ -36,16 +37,14 @@ "18a337wa4amf0k21wnimp3yzs5l3cxqndz4x3x8bm993zhfy5hs5")))) (build-system gnu-build-system) (arguments - '(;; Doesn't work with GNU GSS. - #:configure-flags '("--disable-gssapi") - - #:phases (alist-cons-after + '(#:phases (alist-cons-after 'unpack 'remote-dangling-symlink (lambda _ ;; Remote the dangling symlinks since it breaks the ;; 'patch-source-shebangs' file tree traversal. (delete-file "INSTALL")) %standard-phases))) + (inputs `(("mit-krb5" ,mit-krb5))) (home-page "http://sourceforge.net/projects/libtirpc/") (synopsis "Transport-independent Sun/ONC RPC implementation") (description -- 2.1.4