diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-08-08 14:24:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-08 14:24:47 -0400 |
commit | e349021b1eff5167f8673147a58a7aaa2181f3ca (patch) | |
tree | ad3599a404f3d0084c4a927380b1864a6923e10a /pymssql/0004-Win32-link-to-openssl.patch | |
parent | 20ecff4663d3fa54bf52960a33383fb8bce8dde6 (diff) | |
download | astroconda-dev-e349021b1eff5167f8673147a58a7aaa2181f3ca.tar.gz |
Initial commit of pymssql (#48)
Diffstat (limited to 'pymssql/0004-Win32-link-to-openssl.patch')
-rw-r--r-- | pymssql/0004-Win32-link-to-openssl.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pymssql/0004-Win32-link-to-openssl.patch b/pymssql/0004-Win32-link-to-openssl.patch new file mode 100644 index 0000000..89f68fb --- /dev/null +++ b/pymssql/0004-Win32-link-to-openssl.patch @@ -0,0 +1,31 @@ +--- pymssql-2.1.3/setup.py.orig 2016-09-04 19:07:43.033279900 +0100 ++++ pymssql-2.1.3/setup.py 2016-09-04 19:16:31.135243100 +0100 +@@ -59,7 +59,7 @@ + from setuptools.command.test import test as TestCommand + + LINK_FREETDS_STATICALLY = True +-LINK_OPENSSL = False ++LINK_OPENSSL = True + + ROOT = osp.abspath(osp.dirname(__file__)) + +@@ -296,8 +296,8 @@ + ] + if LINK_OPENSSL: + libraries.extend([ +- 'libeay{}MD'.format(BITNESS), +- 'ssleay{}MD'.format(BITNESS) ++ 'libeay32', ++ 'ssleay32' + ]) + else: + libraries = [ +@@ -305,7 +305,7 @@ + 'ws2_32', 'wsock32', 'kernel32', 'shell32', + ] + if LINK_OPENSSL: +- libraries.extend(['libeay32MD', 'ssleay32MD']) ++ libraries.extend(['libeay32', 'ssleay32']) + + FREETDS = fpath('freetds', '{0}_{1}'.format(freetds_dir, BITNESS)) + suffix = '' if BITNESS == 32 else '64' |