diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/msvc/vcregress.pl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl index 9e85849050b..03a5d976afb 100644 --- a/src/tools/msvc/vcregress.pl +++ b/src/tools/msvc/vcregress.pl @@ -30,6 +30,13 @@ my $tmp_installdir = "$topdir/tmp_install"; do './src/tools/msvc/config_default.pl'; do './src/tools/msvc/config.pl' if (-f 'src/tools/msvc/config.pl'); +# These values are defaults that can be overridden by the calling environment +# (see buildenv.pl processing below). +# c.f. src/Makefile.global.in and configure.ac +$ENV{GZIP_PROGRAM} ||= 'gzip'; +$ENV{LZ4} ||= 'lz4'; +$ENV{TAR} ||= 'tar'; + # buildenv.pl is for specifying the build environment settings # it should contain lines like: # $ENV{PATH} = "c:/path/to/bison/bin;$ENV{PATH}"; @@ -67,13 +74,6 @@ $ENV{with_gssapi} = $config->{gss} ? 'yes' : 'no'; $ENV{with_krb_srvnam} = $config->{krb_srvnam} || 'postgres'; $ENV{with_readline} = 'no'; -# These values are defaults that can be overridden by the calling environment -# (see buildenv.pl processing above). -# c.f. src/Makefile.global.in and configure.ac -$ENV{TAR} ||= 'tar'; -$ENV{LZ4} ||= 'lz4'; -$ENV{GZIP_PROGRAM} ||= 'gzip'; - $ENV{PATH} = "$topdir/$Config/libpq;$ENV{PATH}"; if ($ENV{PERL5LIB}) |