Additional Library for Windows linking and OpenSSL 1.0.0

Added the linking of crypt32.lib to the windows SSL build, as it seems that the current version of OpenSSL is looking for crypt32.lib as well.
This commit is contained in:
Jason Erickson 2010-05-16 15:24:16 -06:00 committed by Federico Di Gregorio
parent 1f1133b871
commit 069695b4ae

View File

@ -189,6 +189,7 @@ class psycopg_build_ext(build_ext):
if self.have_ssl:
self.libraries.append("libeay32")
self.libraries.append("ssleay32")
self.libraries.append("crypt32")
self.libraries.append("user32")
self.libraries.append("gdi32")