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 vinay.sajip
Recipients jcea, meador.inge, naif, pitrou, python-dev, vinay.sajip
Date 2012-02-17.10:52:31
SpamBayes Score 0.0002602325
Marked as misclassified No
Message-id <1329475952.82.0.82697951808.issue13627@psf.upfronthosting.co.za>
In-reply-to
Content
I'm getting a failure building on Mac OS X Leopard (10.5.8) relating to ECDH:

/Users/vinay/projects/pythonv/Modules/_ssl.c: In function ""PyInit__ssl":
/Users/vinay/projects/pythonv/Modules/_ssl.c:2545: error: "SSL_OP_SINGLE_ECDH_USE" undeclared (first use in this function)

The relevant line

    PyModule_AddIntConstant(m, "OP_SINGLE_ECDH_USE", SSL_OP_SINGLE_ECDH_USE);

isn't bracketed with #ifndef OPENSSL_NO_ECDH/#endif - shouldn't it be?
History
Date User Action Args
2012-02-17 10:52:33vinay.sajipsetrecipients: + vinay.sajip, jcea, pitrou, meador.inge, python-dev, naif
2012-02-17 10:52:32vinay.sajipsetmessageid: <1329475952.82.0.82697951808.issue13627@psf.upfronthosting.co.za>
2012-02-17 10:52:32vinay.sajiplinkissue13627 messages
2012-02-17 10:52:31vinay.sajipcreate