[issue1129] OpenSSL detection broken for Python 3.0a1

2007-09-07 Thread Georg Brandl
Georg Brandl added the comment: I think you misunderstood the setup.py message; from OpenSSL 0.9.8, building the _sha modules is not needed. That they are reported as not built is a bug which has been fixed now in SVN. -- nosy: +georg.brandl resolution: -> invalid status: open -> close

[issue1129] OpenSSL detection broken for Python 3.0a1

2007-09-07 Thread Stefan Sonnenberg-Carstens
Stefan Sonnenberg-Carstens added the comment: Patch attached: --- setup.py2007-09-07 16:08:05.0 -0400 +++ ../Python-3.0a1_SSC/setup.py2007-09-07 16:07:31.0 -0400 @@ -613,7 +613,7 @@ else: missing.append('_hashlib') -if (openssl_ver < 0x0

[issue1129] OpenSSL detection broken for Python 3.0a1

2007-09-07 Thread Stefan Sonnenberg-Carstens
New submission from Stefan Sonnenberg-Carstens: In line 618 the comparison must be this: if (openssl_ver >= 0x00908000): otherwise there are complaints about not being able to build the _sha256 and _sha512 modules, even if OpenSSL >= 0.9.8 is installed, as in my case. -- components: Bu