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_4_7~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed67b6cc2f64d6ef445377744cb0bf7f866ddeba;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 7bdc2b8cbd..ce6359d584 100644 --- a/src/tools/msvc/Install.pm +++ b/src/tools/msvc/Install.pm @@ -416,6 +416,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/');