From: Alvaro Herrera Date: Tue, 23 Jan 2007 15:44:11 +0000 (+0000) Subject: This patch is required for vcbuild to work after the changes to X-Git-Tag: REL9_0_0~6316 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=e25138f3e9dbc7d115c96af38a94566e8803c9d3;p=pg-rex%2Fsyncrep.git This patch is required for vcbuild to work after the changes to pg_proc.h (it's the same changes that's in gen_fmgrtab.sh in the unix build). Patch from Magnus Hagander. --- diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index c55f35d2dc..4086f428f5 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -133,9 +133,9 @@ sub GenerateFiles { oid => $p[0], proname => $p[1], prosrc => $p[$#p-2], - nargs => $p[10], - strict => $p[7], - retset => $p[8], + nargs => $p[12], + strict => $p[9], + retset => $p[10], }; } close(I);