diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2017-06-05 20:38:46 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2017-06-05 20:40:27 -0400 |
commit | 6da9996358989b86744febd0eab24f0b5dc2f7d0 (patch) | |
tree | f43f42938839d6b07fd8f5137c4b09ffe9a0879f | |
parent | 307fc49d5c02ee895f7da1ca442e6ecf53deeac6 (diff) | |
download | postgresql-6da9996358989b86744febd0eab24f0b5dc2f7d0.tar.gz postgresql-6da9996358989b86744febd0eab24f0b5dc2f7d0.zip |
Fix thinko in previous openssl change
-rw-r--r-- | src/tools/msvc/Solution.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index ddf874aadce..1a05d68ba04 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -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); |