summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-devtools/flex/flex/0001-Match-malloc-signature-to-its-use.patch25
-rw-r--r--meta/recipes-devtools/flex/flex_2.6.4.bb1
2 files changed, 26 insertions, 0 deletions
diff --git a/meta/recipes-devtools/flex/flex/0001-Match-malloc-signature-to-its-use.patch b/meta/recipes-devtools/flex/flex/0001-Match-malloc-signature-to-its-use.patch
new file mode 100644
index 0000000000..fc3b8c563d
--- /dev/null
+++ b/meta/recipes-devtools/flex/flex/0001-Match-malloc-signature-to-its-use.patch
@@ -0,0 +1,25 @@
1From cec508013706ef06dbac036905a90cbe075fa03d Mon Sep 17 00:00:00 2001
2From: Richard Barnes <rbarnes@umn.edu>
3Date: Wed, 2 Oct 2024 10:35:09 -0700
4Subject: [PATCH] Match `malloc` signature to its use
5
6Upstream-Status: Submitted [https://github.com/westes/flex/pull/674]
7
8Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
9---
10 lib/malloc.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/lib/malloc.c b/lib/malloc.c
14index 75e8ef9..701b9b3 100755
15--- a/lib/malloc.c
16+++ b/lib/malloc.c
17@@ -3,7 +3,7 @@
18
19 #include <sys/types.h>
20
21- void *malloc ();
22+ void *malloc (size_t n);
23
24 /* Allocate an N-byte block of memory from the heap.
25 If N is zero, allocate a 1-byte block. */
diff --git a/meta/recipes-devtools/flex/flex_2.6.4.bb b/meta/recipes-devtools/flex/flex_2.6.4.bb
index 793a935962..c29377c5eb 100644
--- a/meta/recipes-devtools/flex/flex_2.6.4.bb
+++ b/meta/recipes-devtools/flex/flex_2.6.4.bb
@@ -19,6 +19,7 @@ SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/flex-${PV}.tar.gz \
19 file://check-funcs.patch \ 19 file://check-funcs.patch \
20 file://0001-Emit-no-line-directives-if-gen_line_dirs-is-false.patch \ 20 file://0001-Emit-no-line-directives-if-gen_line_dirs-is-false.patch \
21 file://0001-build-tests-add-missing-parser-scanner-dependencies.patch \ 21 file://0001-build-tests-add-missing-parser-scanner-dependencies.patch \
22 file://0001-Match-malloc-signature-to-its-use.patch \
22 " 23 "
23 24
24SRC_URI[md5sum] = "2882e3179748cc9f9c23ec593d6adc8d" 25SRC_URI[md5sum] = "2882e3179748cc9f9c23ec593d6adc8d"