mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: gcal: Apply Gnulib fixes.
* gnu/packages/gcal.scm (gcal)[modules, snippet]: New fields.
This commit is contained in:
parent
f1a9c6e581
commit
68b0226b2a
1 changed files with 18 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2018 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -32,7 +32,23 @@ (define-public gcal
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1av11zkfirbixn05hyq4xvilin0ncddfjqzc4zd9pviyp506rdci"))))
|
"1av11zkfirbixn05hyq4xvilin0ncddfjqzc4zd9pviyp506rdci"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin
|
||||||
|
;; Adjust the bundled gnulib to work with glibc 2.28. See e.g.
|
||||||
|
;; "m4-gnulib-libio.patch". This is a phase rather than patch
|
||||||
|
;; or snippet to work around <https://bugs.gnu.org/32347>.
|
||||||
|
(substitute* (find-files "lib" "\\.c$")
|
||||||
|
(("#if defined _IO_ftrylockfile")
|
||||||
|
"#if defined _IO_EOF_SEEN"))
|
||||||
|
(substitute* "lib/stdio-impl.h"
|
||||||
|
(("^/\\* BSD stdio derived implementations")
|
||||||
|
(string-append "#if !defined _IO_IN_BACKUP && defined _IO_EOF_SEEN\n"
|
||||||
|
"# define _IO_IN_BACKUP 0x100\n"
|
||||||
|
"#endif\n\n"
|
||||||
|
"/* BSD stdio derived implementations")))
|
||||||
|
#t))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(home-page "https://www.gnu.org/software/gcal/")
|
(home-page "https://www.gnu.org/software/gcal/")
|
||||||
(synopsis "Calculating and printing a wide variety of calendars")
|
(synopsis "Calculating and printing a wide variety of calendars")
|
||||||
|
|
Loading…
Reference in a new issue