1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-05 09:19:17 +03:00

MSVC: Accept tcl86.lib in addition to tcl86t.lib.

ActiveTcl8.6.4.1.299124-win32-x86_64-threaded.exe ships just tcl86.lib.
Back-patch to 9.2, like the commit recognizing tcl86t.lib.
This commit is contained in:
Noah Misch 2017-07-23 23:53:27 -07:00
parent 82ebda7fff
commit bcc2c3b457

View File

@ -200,7 +200,7 @@ sub mkvcbuild
$pltcl->AddIncludeDir($solution->{options}->{tcl} . '/include'); $pltcl->AddIncludeDir($solution->{options}->{tcl} . '/include');
$pltcl->AddReference($postgres); $pltcl->AddReference($postgres);
for my $tclver (qw(86t 85 84)) for my $tclver (qw(86t 86 85 84))
{ {
my $tcllib = $solution->{options}->{tcl} . "/lib/tcl$tclver.lib"; my $tcllib = $solution->{options}->{tcl} . "/lib/tcl$tclver.lib";
if (-e $tcllib) if (-e $tcllib)