Re: [Python-Dev] Windows builds for backported SSL module, please?

On 05/10/2007, Bill Janssen <janssen@parc.com> wrote:
For some reason, it was set to be 'hidden'.
Try
http://pypi.python.org/pypi/ssl/1.5
Bill
Tiny typo in setup.py (see below). I've fixed it in my copy - it won't affect the Windows builds, unless you want to release a new version, when the version number will change :-) Paul. --- setup.py.orig 2007-10-05 00:19:04.000000000 +0100 +++ setup.py 2007-10-05 19:01:27.359375000 +0100 @@ -160,7 +160,7 @@ ssl_incs = [os.environ.get("C_INCLUDE_DIR") or os.path.join(gnuwin32_dir, "include")] ssl_libs = [os.environ.get("C_LIB_DIR") or os.path.join(gnuwin32_dir, "lib")] libs = ['ssl', 'crypto', 'wsock32'] - if static: + if not dynamic: libs = libs + ['gdi32', 'gw32c', 'ole32', 'uuid'] link_args = ['-static'] else:

On 05/10/2007, Paul Moore <p.f.moore@gmail.com> wrote:
On 05/10/2007, Bill Janssen <janssen@parc.com> wrote:
For some reason, it was set to be 'hidden'.
Try
http://pypi.python.org/pypi/ssl/1.5
Bill
Tiny typo in setup.py (see below). I've fixed it in my copy - it won't affect the Windows builds, unless you want to release a new version, when the version number will change :-)
BTW, there's still an asyncore bug with Python 2.4. I can't recall if that's a known issue. It was in 1.3 (I didn't ever get to 1.4). Paul.

BTW, there's still an asyncore bug with Python 2.4. I can't recall if that's a known issue. It was in 1.3 (I didn't ever get to 1.4).
Hmmm, I just build Python 2.4.4 and tried it (on a Mac), and it seems to work fine. Must be a Windows issue, somehow. Any ideas? Bill
participants (2)
-
Bill Janssen
-
Paul Moore