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