mirror of
https://github.com/postgres/postgres.git
synced 2025-04-22 23:02:54 +03:00
Fix MSVC build (I think) for recent pg_proc.h column addition.
This business with two independent build systems does kinda suck.
This commit is contained in:
parent
7ab43b88d7
commit
dd4594e332
@ -3,7 +3,7 @@ package Solution;
|
|||||||
#
|
#
|
||||||
# Package that encapsulates a Visual C++ solution file generation
|
# Package that encapsulates a Visual C++ solution file generation
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.31 2007/07/24 09:00:27 mha Exp $
|
# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.32 2007/09/03 02:51:47 tgl Exp $
|
||||||
#
|
#
|
||||||
use Carp;
|
use Carp;
|
||||||
use strict;
|
use strict;
|
||||||
@ -173,7 +173,7 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY
|
|||||||
{
|
{
|
||||||
oid => $p[0],
|
oid => $p[0],
|
||||||
proname => $p[1],
|
proname => $p[1],
|
||||||
prosrc => $p[$#p-2],
|
prosrc => $p[$#p-3],
|
||||||
nargs => $p[12],
|
nargs => $p[12],
|
||||||
strict => $p[9],
|
strict => $p[9],
|
||||||
retset => $p[10],
|
retset => $p[10],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user