From: Andrew Dunstan Date: Fri, 28 May 2021 13:26:30 +0000 (-0400) Subject: Report configured port in MSVC built pg_config X-Git-Tag: REL_10_18~106 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8c1062a11846327f2d04992558da37a64342c8a;p=thirdparty%2Fpostgresql.git Report configured port in MSVC built pg_config This is a long standing omission, discovered when trying to write code that relied on it. Backpatch to all live branches. --- diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index 4d21b1c70ae..adc7f7e30ac 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -813,6 +813,8 @@ sub GetFakeConfigure $cfg .= ' --with-tcl' if ($self->{options}->{tcl}); $cfg .= ' --with-perl' if ($self->{options}->{perl}); $cfg .= ' --with-python' if ($self->{options}->{python}); + my $port = $self->{options}->{'--with-pgport'}; + $cfg .= " --with-pgport=$port" if defined($port) return $cfg; }