guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: elogind: Build with gperf 3.0.


From: Ludovic Courtès
Subject: 01/04: gnu: elogind: Build with gperf 3.0.
Date: Sun, 19 Mar 2017 18:43:32 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit 4ed06287376bc1632c6bca4a395795bc8cc1b874
Author: Ludovic Courtès <address@hidden>
Date:   Sun Mar 19 23:09:15 2017 +0100

    gnu: elogind: Build with gperf 3.0.
    
    * gnu/packages/gperf.scm (gperf-3.0): New variable.
    * gnu/packages/freedesktop.scm (elogind)[native-inputs]: Use GPERF-3.0
    instead of GPERF.
---
 gnu/packages/freedesktop.scm |  5 ++++-
 gnu/packages/gperf.scm       | 17 ++++++++++++++++-
 2 files changed, 20 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 20a104f..065046e 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -206,7 +206,10 @@ the freedesktop.org XDG Base Directory specification.")
        ("m4" ,m4)
        ("libxml2" ,libxml2)                     ;for XML_CATALOG_FILES
        ("pkg-config" ,pkg-config)
-       ("gperf" ,gperf)))
+
+       ;; Use gperf 3.0 to work around
+       ;; <https://github.com/wingo/elogind/issues/8>.
+       ("gperf" ,gperf-3.0)))
     (inputs
      `(("linux-pam" ,linux-pam)
        ("linux-libre-headers" ,linux-libre-headers)
diff --git a/gnu/packages/gperf.scm b/gnu/packages/gperf.scm
index 5e55f8d..a9f958f 100644
--- a/gnu/packages/gperf.scm
+++ b/gnu/packages/gperf.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012, 2013 Ludovic Courtès <address@hidden>
+;;; Copyright © 2012, 2013, 2017 Ludovic Courtès <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -44,3 +44,18 @@ strings, it produces a hash function and hash table in C or 
C++ code.  That
 the hash function is perfect means that no collisions can exist and that
 look-ups can be made by single string comparisons.")
     (license gpl3+)))
+
+(define-public gperf-3.0
+  ;; This older version would use 'unsigned int' in its generated lookup
+  ;; functions whereas 3.1 uses 'size_t', which causes breakage such as
+  ;; <https://github.com/wingo/elogind/issues/8>.
+  (package
+    (inherit gperf)
+    (version "3.0.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnu/gperf/gperf-"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "0gnnm8iqcl52m8iha3sxrzrl9mcyhg7lfrhhqgdn4zj00ji14wbn"))))))



reply via email to

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