bug-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: GNU Shishi fails to build


From: Ludovic Courtès
Subject: Re: GNU Shishi fails to build
Date: Thu, 22 Nov 2012 22:50:55 +0100
User-agent: Gnus/5.130005 (Ma Gnus v0.5) Emacs/24.2 (gnu/linux)

Hi,

Nikita Karetnikov <address@hidden> skribis:

> "config.log":

What you pasted is just a subset of config.log, with lines wrapped, and
other edits, right?

It’s better if you can attach config.log, or the relevant subset,
without any editing.

FWIW, this builds correctly here:

  (define-public shishi
    (package
      (name "shishi")
      (version "1.0.1")
      (source
       (origin
        (method url-fetch)
        (uri (string-append
              "mirror://gnu/shishi/shishi-"
              version
              ".tar.gz"))
        (sha256
         (base32
          "13c6w9rpaqb3am65nrn86byvmll5r78pld2vb0i68491vww4fzlx"))))
      (build-system gnu-build-system)
      (arguments
       `(#:make-flags
         
'("CPPFLAGS=-DMAX_ERROR_DESCRIPTION_SIZE=ASN1_MAX_ERROR_DESCRIPTION_SIZE")
         #:patches (list (assoc-ref %build-inputs
                                    "patch/gets"))))
      (inputs
       `(("gnutls" ,gnutls)
         ("zlib" ,zlib)
         ("libgcrypt" ,libgcrypt)
         ("libtasn1" ,libtasn1)
         ("patch/gets" ,(search-patch "shishi-gets-undeclared.patch"))))
      (home-page "http://www.gnu.org/software/shishi/";)
      (synopsis
       "GNU Shishi, free implementation of the Kerberos 5 network security 
system")
      (description
       " GNU Shishi is an implementation of the Kerberos 5 network
    authentication system, as specified in RFC 4120.  Shishi can be
    used to authenticate users in distributed systems.

    Shishi contains a library (`libshishi') that can be used by
    application developers to add support for Kerberos 5.  Shishi
    contains a command line utility (1shishi') that is used by
    users to acquire and manage tickets (and more).  The server
    side, a Key Distribution Center, is implemented by `shishid'.
  ")
      (license "GPLv3+")))

Compared to your version, I just added zlib as an input.

Can you check how it works in a non-chroot setting?

Thanks,
Ludo’.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]