1From 10b2b1ed0b275a0594033872104a53645c8b245c Mon Sep 17 00:00:00 2001
2From: Michael Forney <mforney@mforney.org>
3Date: Wed, 15 Apr 2020 20:10:16 -0700
4Subject: [PATCH] Fix build with old bison versions
5
6---
7 src/parse.y | 1 +
8 1 file changed, 1 insertion(+)
9
10diff --git a/src/parse.y b/src/parse.y
11index 4a101bcd6..742108c51 100644
12--- a/src/parse.y
13+++ b/src/parse.y
14@@ -80,6 +80,7 @@ typedef struct {
15 } v;
16 int lineno;
17 } YYSTYPE;
18+#define YYSTYPE_IS_DECLARED 1
19
20 %}
21
22--
232.29.2
24