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 vstinner
Recipients Edd.Barrett, christian.heimes, dstufft, flox, giampaolo.rodola, janssen, oberstet, pitrou, rpointel, vstinner
Date 2014-09-04.10:36:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1409827019.25.0.0439534441455.issue21356@psf.upfronthosting.co.za>
In-reply-to
Content
> The PyPy patch (and some discussion) is here:

Your patch checks at runtime if libssl comes with RAND_egd:

   HAVE_OPENSSL_RAND_EGD = rffi_platform.Has('RAND_egd')

In CPython, the _ssl module is compiled in C. How can we check if libssl provides RAND_egd() or not at compile time?

Is there a way to check if libssl is OpenSSL or LibreSSL?
History
Date User Action Args
2014-09-04 10:36:59vstinnersetrecipients: + vstinner, janssen, pitrou, giampaolo.rodola, christian.heimes, flox, rpointel, oberstet, dstufft, Edd.Barrett
2014-09-04 10:36:59vstinnersetmessageid: <1409827019.25.0.0439534441455.issue21356@psf.upfronthosting.co.za>
2014-09-04 10:36:59vstinnerlinkissue21356 messages
2014-09-04 10:36:58vstinnercreate