diff options
| author | Jason Erickson <jerickso@stickpeople.com> | 2009-10-04 13:31:51 -0600 |
|---|---|---|
| committer | Federico Di Gregorio <fog@initd.org> | 2009-10-04 23:37:14 +0200 |
| commit | 69a8400e60098a07955a54e64ef8615df346464f (patch) | |
| tree | 31306f555318582d1deb0168a4cdf6ab90123786 /setup.py | |
| parent | 0f00ee129d56a0ed6dc3f54cf141e10864b3bd8f (diff) | |
| download | psycopg2-69a8400e60098a07955a54e64ef8615df346464f.tar.gz | |
Added additional library required for PostgreSQL 8.4.x
For MSVC, added an additional library to include that is required for
PostgreSQL 8.4.x.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -174,6 +174,7 @@ class psycopg_build_ext(build_ext): if compiler_is_msvc: # MSVC requires an explicit "libpq" self.libraries.remove("pq") + self.libraries.append("secur32") self.libraries.append("libpq") self.libraries.append("shfolder") for path in self.library_dirs: |
