gnu: recutils: Adjust Gnulib to libc 2.28.
Fixes <https://bugs.gnu.org/32776>. * gnu/packages/databases.scm (recutils)[modules, snippet]: New fields.
This commit is contained in:
parent
ffec356a29
commit
944a3a8b8e
1 changed files with 17 additions and 1 deletions
|
@ -923,7 +923,23 @@ (define-public recutils
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0cdwa4094x3yx7vn98xykvnlp9rngvd58d19vs3vh5hrvggccg93"))))
|
"0cdwa4094x3yx7vn98xykvnlp9rngvd58d19vs3vh5hrvggccg93"))
|
||||||
|
(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)
|
||||||
|
|
||||||
;; Running tests in parallel leads to test failures and crashes in
|
;; Running tests in parallel leads to test failures and crashes in
|
||||||
|
|
Loading…
Reference in a new issue