This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pythonmeister
Recipients pythonmeister
Date 2007-09-07.20:08:46
SpamBayes Score 0.28098434
Marked as misclassified No
Message-id <1189195726.63.0.942374685973.issue1129@psf.upfronthosting.co.za>
In-reply-to
Content
Patch attached:

--- setup.py    2007-09-07 16:08:05.000000000 -0400
+++ ../Python-3.0a1_SSC/setup.py        2007-09-07 16:07:31.000000000 -0400
@@ -613,7 +613,7 @@
         else:
             missing.append('_hashlib')

-        if (openssl_ver < 0x00908000):
+        if (openssl_ver >= 0x00908000):
             # OpenSSL doesn't do these until 0.9.8 so we'll bring our
own hash
             exts.append( Extension('_sha256', ['sha256module.c']) )
             exts.append( Extension('_sha512', ['sha512module.c']) )
History
Date User Action Args
2007-09-07 20:08:46pythonmeistersetspambayes_score: 0.280984 -> 0.28098434
recipients: + pythonmeister
2007-09-07 20:08:46pythonmeistersetspambayes_score: 0.280984 -> 0.280984
messageid: <1189195726.63.0.942374685973.issue1129@psf.upfronthosting.co.za>
2007-09-07 20:08:46pythonmeisterlinkissue1129 messages
2007-09-07 20:08:46pythonmeistercreate