diff options
author | Leo Famulari <leo@famulari.name> | 2018-01-14 07:43:54 -0800 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-01-14 08:36:48 -0800 |
commit | 6d49ca16be22e3fb95823ac1780ad9460a18b180 (patch) | |
tree | a257276e8b67f65f6233efe4b6a4b91f737a4dae /gnu | |
parent | 1b321229f4653c5daa873813e24910789c0b2918 (diff) | |
download | guix-6d49ca16be22e3fb95823ac1780ad9460a18b180.tar.gz guix-6d49ca16be22e3fb95823ac1780ad9460a18b180.zip |
gnu: elogind: Fix compilation against glibc 2.26.
* gnu/packages/freedesktop.scm (elogind)[arguments]: Add a 'patch-locale-header'
phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/freedesktop.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index 5d8493b328..63adb4d076 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -259,6 +259,12 @@ the freedesktop.org XDG Base Directory specification.") #:make-flags '("PKTTYAGENT=/run/current-system/profile/bin/pkttyagent") #:phases (modify-phases %standard-phases + (add-after 'unpack 'patch-locale-header + (lambda _ + ;; Fix compilation with glibc >= 2.26, which removed xlocale.h. + ;; This can be removed for elogind 234. + (substitute* "src/basic/parse-util.c" + (("xlocale\\.h") "locale.h")))) (add-before 'configure 'autogen (lambda _ (and (zero? (system* "intltoolize" "--force" "--automake")) |