mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -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"
|
||||
"#endif\n\n"
|
||||
"/* 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)
|
||||
(arguments
|
||||
;; XXX: These Gnulib tests fail with GCC 10 and glibc 2.33; skip them.
|
||||
|
|
Loading…
Reference in a new issue