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 dripton
Recipients dripton
Date 2007-09-06.10:51:21
SpamBayes Score 0.02689615
Marked as misclassified No
Message-id <1189075881.9.0.366422086484.issue1117@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.0a1, Gentoo Linux x86, with OpenSSL 0.9.8e installed.

$ ./configure; make

Failed to find the necessary bits to build these modules:
_sha256           _sha512
To find the necessary bits, look in setup.py in detect_modules() for the
module's name.

setup.py says:

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']) )

But I have openssl 0.9.8e.  So openssl is new enough that I don't need
the _sha256 and _sha512 modules.  And the comment says that "these
aren't strictly missing since they are unneeded", so the error message
is spurious.
History
Date User Action Args
2007-09-06 10:51:22driptonsetspambayes_score: 0.0268962 -> 0.02689615
recipients: + dripton
2007-09-06 10:51:21driptonsetspambayes_score: 0.0268962 -> 0.0268962
messageid: <1189075881.9.0.366422086484.issue1117@psf.upfronthosting.co.za>
2007-09-06 10:51:21driptonlinkissue1117 messages
2007-09-06 10:51:21driptoncreate