mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: idutils: Fix build with glibc 2.33.
* gnu/packages/idutils.scm (idutils)[source]: Remove reference to 'gets' from "lib/stdio.in.h".
This commit is contained in:
parent
a59abcb350
commit
20e6446a68
1 changed files with 5 additions and 1 deletions
|
@ -48,7 +48,11 @@ (define-public idutils
|
||||||
"# define _IO_IN_BACKUP 0x100\n"
|
"# define _IO_IN_BACKUP 0x100\n"
|
||||||
"#endif\n\n"
|
"#endif\n\n"
|
||||||
"/* BSD stdio derived implementations")))
|
"/* BSD stdio derived implementations")))
|
||||||
#t))))
|
|
||||||
|
;; 'gets' is deprecated in glibc 2.33 and its declaration is
|
||||||
|
;; no longer visible by default from <stdio.h>.
|
||||||
|
(substitute* "lib/stdio.in.h"
|
||||||
|
(("_GL_WARN_ON_USE \\(gets.*") ""))))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; XXX: These Gnulib tests fail with GCC 10 and glibc 2.33; skip them.
|
;; XXX: These Gnulib tests fail with GCC 10 and glibc 2.33; skip them.
|
||||||
|
|
Loading…
Reference in a new issue