aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2017-06-05 20:38:46 -0400
committerAndrew Dunstan <andrew@dunslane.net>2017-06-05 20:39:53 -0400
commitec504aff740993560d8d1ca16f70cbf8147cc622 (patch)
tree4353940babb4eba9784a29a4638c9cf687b6714f
parentd3ca4b4b454fcd26de071f1556ec7b5e693514d4 (diff)
downloadpostgresql-ec504aff740993560d8d1ca16f70cbf8147cc622.tar.gz
postgresql-ec504aff740993560d8d1ca16f70cbf8147cc622.zip
Fix thinko in previous openssl change
-rw-r--r--src/tools/msvc/Solution.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm
index 8191a40ea50..c155c5f3ca1 100644
--- a/src/tools/msvc/Solution.pm
+++ b/src/tools/msvc/Solution.pm
@@ -523,7 +523,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);