]> granicus.if.org Git - postgresql/commitdiff
Remove the last traces of --temp-port.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 1 Dec 2008 13:39:45 +0000 (13:39 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 1 Dec 2008 13:39:45 +0000 (13:39 +0000)
src/tools/msvc/vcregress.pl

index 9312e758c8453f097a5a82d429d0b1397ddf3748..9566a99976db1a3826dc30b1c3246cc055de9ea8 100644 (file)
@@ -1,7 +1,7 @@
 
 # -*-perl-*- hey - emacs - this is a perl file
 
-# $PostgreSQL: pgsql/src/tools/msvc/vcregress.pl,v 1.9 2008/11/28 23:47:51 tgl Exp $
+# $PostgreSQL: pgsql/src/tools/msvc/vcregress.pl,v 1.10 2008/12/01 13:39:45 tgl Exp $
 
 use strict;
 
@@ -49,16 +49,6 @@ unless ($schedule)
        $schedule = "parallel" if ($what eq 'CHECK' || $what =~ /PARALLEL/);
 }
 
-my $temp_port;
-if (-e "src/tools/msvc/config.pl")
-{
-    eval{
-        require "src/tools/msvc/config.pl";
-        $temp_port = $config->{'--with-pgport'};
-      }
-}
-$temp_port ||= 55432;
-
 my $topdir = getcwd();
 
 $ENV{PERL5LIB} = "$topdir/src/tools/msvc";
@@ -146,8 +136,7 @@ sub ecpgcheck
         "--load-language=plpgsql",
         "--no-locale",
         "--temp-install=./tmp_chk",
-        "--top-builddir=\"$topdir\"",
-        "--port=$temp_port"
+        "--top-builddir=\"$topdir\""
     );
     push(@args,$maxconn) if $maxconn;
     system(@args);