projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db4d22d
)
Properly install gram.h on MSVC builds
author
Magnus Hagander
<magnus@hagander.net>
Sun, 9 Jan 2011 14:31:48 +0000
(15:31 +0100)
committer
Magnus Hagander
<magnus@hagander.net>
Sun, 9 Jan 2011 14:31:48 +0000
(15:31 +0100)
This file is now needed by pgAdmin builds, which started
failing since it was missing in the installer builds.
src/tools/msvc/Install.pm
patch
|
blob
|
blame
|
history
diff --git
a/src/tools/msvc/Install.pm
b/src/tools/msvc/Install.pm
index 784d7884281de8b8f7f390cc13c86aa8615b641c..d3830312e459f44f5a257eaeb743fa9fba39f940 100644
(file)
--- a/
src/tools/msvc/Install.pm
+++ b/
src/tools/msvc/Install.pm
@@
-431,6
+431,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/');
my $D;
opendir($D, 'src/include') || croak "Could not opendir on src/include!\n";