summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/bison/bison/gnulib.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/bison/bison/gnulib.patch')
-rw-r--r--meta/recipes-devtools/bison/bison/gnulib.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/meta/recipes-devtools/bison/bison/gnulib.patch b/meta/recipes-devtools/bison/bison/gnulib.patch
deleted file mode 100644
index 7eaf0ce0fa..0000000000
--- a/meta/recipes-devtools/bison/bison/gnulib.patch
+++ /dev/null
@@ -1,21 +0,0 @@
1Fix gnulib issues found with glibc 2.28 libio.h removal
2
3see
4https://lists.gnu.org/r/bug-gnulib/2018-03/msg00000.html
5
6Upstream-Status: Pending
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8
9Index: bison-3.0.4/lib/fseterr.c
10===================================================================
11--- bison-3.0.4.orig/lib/fseterr.c
12+++ bison-3.0.4/lib/fseterr.c
13@@ -29,7 +29,7 @@ fseterr (FILE *fp)
14 /* Most systems provide FILE as a struct and the necessary bitmask in
15 <stdio.h>, because they need it for implementing getc() and putc() as
16 fast macros. */
17-#if defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */
18+#if defined _IO_EOF_SEEN || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */
19 fp->_flags |= _IO_ERR_SEEN;
20 #elif defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin */
21 fp_->_flags |= __SERR;