gnu: idutils: Fix build with glibc 2.33.
* gnu/packages/idutils.scm (idutils)[source]: Remove reference to 'gets' from "lib/stdio.in.h".master
parent
a59abcb350
commit
20e6446a68
|
@ -48,7 +48,11 @@
|
||||||
"# 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.
|
||||||
|
|
Reference in New Issue