From b2c3a537cd89dd8f5f47ea991c6724295b2c06e5 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Sun, 9 Sep 2007 18:01:42 +0000 Subject: openssl 0.9.6 is too old to use, use our own modules --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b2e1cac..b79ea05 100644 --- a/setup.py +++ b/setup.py @@ -613,12 +613,12 @@ class PyBuildExt(build_ext): 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']) ) - if not openssl_ver: + if openssl_ver < 0x00907000: # no openssl at all, use our own md5 and sha1 exts.append( Extension('_md5', ['md5module.c']) ) exts.append( Extension('_sha1', ['sha1module.c']) ) -- cgit v0.12