summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/bison
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2018-08-06 15:57:04 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-08-08 10:51:59 +0100
commit5e441f3f8aa896e264f44ba8b699e5841cceade4 (patch)
treea0edc4890eb04f55ca5646c54525b212d6a0d097 /meta/recipes-devtools/bison
parentfd977a604ac498d76c8fefbc27ef55f3259dcd45 (diff)
downloadpoky-5e441f3f8aa896e264f44ba8b699e5841cceade4.tar.gz
bison: Fix build break with glibc 2.28
(From OE-Core rev: 741415c58b3565764000028c26efd081212eb989) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/bison')
-rw-r--r--meta/recipes-devtools/bison/bison/gnulib.patch21
-rw-r--r--meta/recipes-devtools/bison/bison_3.0.4.bb1
2 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-devtools/bison/bison/gnulib.patch b/meta/recipes-devtools/bison/bison/gnulib.patch
new file mode 100644
index 0000000000..7eaf0ce0fa
--- /dev/null
+++ b/meta/recipes-devtools/bison/bison/gnulib.patch
@@ -0,0 +1,21 @@
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;
diff --git a/meta/recipes-devtools/bison/bison_3.0.4.bb b/meta/recipes-devtools/bison/bison_3.0.4.bb
index 58728f5021..cc155f0fbe 100644
--- a/meta/recipes-devtools/bison/bison_3.0.4.bb
+++ b/meta/recipes-devtools/bison/bison_3.0.4.bb
@@ -14,6 +14,7 @@ SRC_URI = "${GNU_MIRROR}/bison/bison-${PV}.tar.xz \
14 file://dont-depend-on-help2man.patch.patch \ 14 file://dont-depend-on-help2man.patch.patch \
15 file://0001-src-local.mk-fix-parallel-issue.patch \ 15 file://0001-src-local.mk-fix-parallel-issue.patch \
16 file://add-with-bisonlocaledir.patch \ 16 file://add-with-bisonlocaledir.patch \
17 file://gnulib.patch \
17" 18"
18 19
19# No point in hardcoding path to m4, just use PATH 20# No point in hardcoding path to m4, just use PATH