]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix thinko in previous openssl change
authorAndrew Dunstan <andrew@dunslane.net>
Tue, 6 Jun 2017 00:38:46 +0000 (20:38 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Tue, 6 Jun 2017 00:40:27 +0000 (20:40 -0400)
src/tools/msvc/Solution.pm

index ddf874aadcea96e35cf4b4c3245c85038b5dfd26..1a05d68ba0436382a77ad351482f6e843912fd43 100644 (file)
@@ -500,7 +500,7 @@ sub AddProject
        if ($self->{options}->{openssl})
        {
                $proj->AddIncludeDir($self->{options}->{openssl} . '\include');
-               if (-e "$self->{options}->{openssl}/lib/VC/ssleayMD.lib")
+               if (-e "$self->{options}->{openssl}/lib/VC/ssleay32MD.lib")
                {
                        $proj->AddLibrary(
                                $self->{options}->{openssl} . '\lib\VC\ssleay32.lib', 1);