From ce3c2ab7806a2a7c93bb018e9a6678cf8eec7d8b Mon Sep 17 00:00:00 2001 From: Florian Boor Date: Mon, 21 Jan 2019 13:28:08 +0100 Subject: [PATCH] bison: add patch to work around glib related build failure --- recipes-devtools/bison/bison_%.bbappend | 3 +++ recipes-devtools/bison/files/gnulib.patch | 21 +++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 recipes-devtools/bison/bison_%.bbappend create mode 100644 recipes-devtools/bison/files/gnulib.patch diff --git a/recipes-devtools/bison/bison_%.bbappend b/recipes-devtools/bison/bison_%.bbappend new file mode 100644 index 0000000..15380f4 --- /dev/null +++ b/recipes-devtools/bison/bison_%.bbappend @@ -0,0 +1,3 @@ +FILESEXTRAPATHS_prepend := "${THISDIR}/files:" + +SRC_URI += "file://gnulib.patch" diff --git a/recipes-devtools/bison/files/gnulib.patch b/recipes-devtools/bison/files/gnulib.patch new file mode 100644 index 0000000..7eaf0ce --- /dev/null +++ b/recipes-devtools/bison/files/gnulib.patch @@ -0,0 +1,21 @@ +Fix gnulib issues found with glibc 2.28 libio.h removal + +see +https://lists.gnu.org/r/bug-gnulib/2018-03/msg00000.html + +Upstream-Status: Pending +Signed-off-by: Khem Raj + +Index: bison-3.0.4/lib/fseterr.c +=================================================================== +--- bison-3.0.4.orig/lib/fseterr.c ++++ bison-3.0.4/lib/fseterr.c +@@ -29,7 +29,7 @@ fseterr (FILE *fp) + /* Most systems provide FILE as a struct and the necessary bitmask in + , because they need it for implementing getc() and putc() as + fast macros. */ +-#if defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */ ++#if defined _IO_EOF_SEEN || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */ + fp->_flags |= _IO_ERR_SEEN; + #elif defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin */ + fp_->_flags |= __SERR; -- 2.39.2