From: Magnus Hagander Date: Sun, 9 Jan 2011 14:38:08 +0000 (+0100) Subject: Properly install gram.h on MSVC builds X-Git-Tag: REL8_3_14~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=afa5584b25748255a55e665f45c43a72f7f69553;p=postgresql Properly install gram.h on MSVC builds This file is now needed by pgAdmin builds, which started failing since it was missing in the installer builds. --- diff --git a/src/tools/msvc/Install.pm b/src/tools/msvc/Install.pm index 4a0ccb6b61..c09dd6cd54 100644 --- a/src/tools/msvc/Install.pm +++ b/src/tools/msvc/Install.pm @@ -410,6 +410,8 @@ sub CopyIncludeFiles $target . '/include/server/', 'src/include/', 'pg_config.h', 'pg_config_os.h' ); + CopyFiles('Grammar header', $target . '/include/server/parser/', + 'src/backend/parser/', 'gram.h'); CopySetOfFiles('', [ glob( "src\\include\\*.h" ) ], $target . '/include/server/');