Skip to content

Commit 3191ab5

Browse files
committed
Remove the last traces of --temp-port.
1 parent ac03efb commit 3191ab5

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

src/tools/msvc/vcregress.pl

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# -*-perl-*- hey - emacs - this is a perl file
33

4-
# $PostgreSQL: pgsql/src/tools/msvc/vcregress.pl,v 1.9 2008/11/28 23:47:51 tgl Exp $
4+
# $PostgreSQL: pgsql/src/tools/msvc/vcregress.pl,v 1.10 2008/12/01 13:39:45 tgl Exp $
55

66
use strict;
77

@@ -49,16 +49,6 @@
4949
$schedule = "parallel" if ($what eq 'CHECK' || $what =~ /PARALLEL/);
5050
}
5151

52-
my $temp_port;
53-
if (-e "src/tools/msvc/config.pl")
54-
{
55-
eval{
56-
require "src/tools/msvc/config.pl";
57-
$temp_port = $config->{'--with-pgport'};
58-
}
59-
}
60-
$temp_port ||= 55432;
61-
6252
my $topdir = getcwd();
6353

6454
$ENV{PERL5LIB} = "$topdir/src/tools/msvc";
@@ -146,8 +136,7 @@ sub ecpgcheck
146136
"--load-language=plpgsql",
147137
"--no-locale",
148138
"--temp-install=./tmp_chk",
149-
"--top-builddir=\"$topdir\"",
150-
"--port=$temp_port"
139+
"--top-builddir=\"$topdir\""
151140
);
152141
push(@args,$maxconn) if $maxconn;
153142
system(@args);

0 commit comments

Comments
 (0)