diff options
author | Adrian Perez de Castro <aperez@igalia.com> | 2017-09-13 17:35:24 +0300 |
---|---|---|
committer | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2017-09-27 23:28:35 +0200 |
commit | c128c5f3c79b31d89256ffbc5c650ba613d3d52b (patch) | |
tree | a993d2e1ff58b95defaec3d29b75e35f19d97588 /package/flex/0001-flex-disable-documentation.patch | |
parent | d6a4807f9473b4322e96b77169ffcd6d9cd84170 (diff) | |
download | buildroot-c128c5f3c79b31d89256ffbc5c650ba613d3d52b.tar.gz buildroot-c128c5f3c79b31d89256ffbc5c650ba613d3d52b.zip |
flex: Fix segfault of stage1flex when host has glibc 2.26 or newer
When the host uses glibc 2.26 or newer, Flex will try to use the
newly-introduced reallocarray() function, but as it would not define
_GNU_SOURCE a segmentation fault would occur later on due to the
compiler assumming that the function is implicitly defined.
This issue manifests itself due to a crash of "stage1flex" during the
Flex bootstrap:
./stage1flex -o stage1scan.c ./scan.l
make[2]: *** [Makefile:1725: stage1scan.c] Segmentation fault (core dumped)
This imports the patch from the upstream Git repository, and adds flags
in the .mk file to rebuild the Autotools scripts and support files. Due
to the latter, the patch to disable the documentation is changed so it
modifies the .am file instead.
Signed-off-by: Adrian Perez de Castro <aperez@igalia.com>
[Arnout:
- Add Adrian's Sob and upstream ref to new patch;
- Keep patch 1 as patch 1;
- Keep Vicente as author of path 1;
- Add reason for autoreconf in a comment.]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Diffstat (limited to 'package/flex/0001-flex-disable-documentation.patch')
-rw-r--r-- | package/flex/0001-flex-disable-documentation.patch | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/package/flex/0001-flex-disable-documentation.patch b/package/flex/0001-flex-disable-documentation.patch index 68bec128ee..b017b41385 100644 --- a/package/flex/0001-flex-disable-documentation.patch +++ b/package/flex/0001-flex-disable-documentation.patch @@ -1,4 +1,7 @@ -flex: disable documentation +From a98443c6a72d5821d4e0152311e5c3eb4cdff25c Mon Sep 17 00:00:00 2001 +From: Vicente Olivert Riera <Vincent.Riera@imgtec.com> +Date: Wed, 13 Sep 2017 17:26:48 +0300 +Subject: [PATCH] flex: disable documentation Since we prevent the flex binary to be built, we also need to prevent the documentation to be built, otherwise it will fail like this: @@ -9,11 +12,17 @@ make[2]: *** No rule to make target '../src/flex', needed by 'flex.1'. Stop. Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> +[Adrian: patch Makefile.am instead of Makefile.in] +Signed-off-by: Adrian Perez de Castro <aperez@igalia.com> +--- + Makefile.am | 1 - + 1 file changed, 1 deletion(-) -diff -rup a/Makefile.in b/Makefile.in ---- a/Makefile.in 2017-05-06 15:49:09.000000000 +0100 -+++ b/Makefile.in 2017-05-10 14:35:20.152794902 +0100 -@@ -450,7 +450,6 @@ EXTRA_DIST = \ +diff --git a/Makefile.am b/Makefile.am +index 638c549..9db3420 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -43,7 +43,6 @@ EXTRA_DIST = \ SUBDIRS = \ src \ @@ -21,3 +30,6 @@ diff -rup a/Makefile.in b/Makefile.in examples \ po \ tests \ +-- +2.14.1 + |