summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJason Erickson <jerickso@stickpeople.com>2010-05-16 15:24:16 -0600
committerFederico Di Gregorio <fog@initd.org>2010-05-17 09:06:29 +0200
commit069695b4ae43feb055438c176640e56d4a99c335 (patch)
treede20eca44e390511292e18ac28816da6b4afba35 /setup.py
parent1f1133b8714d1f6e5da656eddb3c6ff62f5e3570 (diff)
downloadpsycopg2-069695b4ae43feb055438c176640e56d4a99c335.tar.gz
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.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 0a491a9..cd4c3ae 100644
--- a/setup.py
+++ b/setup.py
@@ -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")