From 462e2b9e09afe66ac225fe7486f964b3c8de2ee5 Mon Sep 17 00:00:00 2001 From: Marina Polyakova Date: Tue, 10 Aug 2021 16:21:07 +0300 Subject: [PATCH] PGPRO-5414: Windows build fix for Postgres Pro Standard 15 In PostgreSQL 15 the variables contrib_extraincludes and contrib_extrasource from src/tools/msvc/Mkvcbuild.pm are no longer used. With this change the contrib module jsquery does not need them either. --- jsquery_gram.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsquery_gram.y b/jsquery_gram.y index 2d6d531..282f2dc 100644 --- a/jsquery_gram.y +++ b/jsquery_gram.y @@ -47,7 +47,7 @@ typedef struct string { int len; int total; } string; -#include +#include "jsquery_gram.h" /* flex 2.5.4 doesn't bother with a decl for this */ int jsquery_yylex(YYSTYPE * yylval_param);