Message 234871 - Python tracker

Message234871

Author ned.deily
Recipients benjamin.peterson, ned.deily
Date 2015-01-28.04:21:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1422418886.09.0.55350529771.issue23335@psf.upfronthosting.co.za>
In-reply-to
Content
_ssl.c compilation is broken on default and 27 when building with older (pre-1.0.1 ?) versions of OpenSSL:
  
/py/dev/3x/source/Modules/_ssl.c:2296:24: error: use of undeclared identifier
      'OPENSSL_NPN_NEGOTIATED'
    if (alpn && ret != OPENSSL_NPN_NEGOTIATED)

The code added by eaa38b75cc78 (default) and 94ec4d8cf104 (2.7) doesn't account for the possibility that NPN is not available.  (The Snow Leopard buildbots are down at the moment but I would expect them to be failing with this.)
History
Date User Action Args
2015-01-28 04:21:26ned.deilysetrecipients: + ned.deily, benjamin.peterson
2015-01-28 04:21:26ned.deilysetmessageid: <1422418886.09.0.55350529771.issue23335@psf.upfronthosting.co.za>
2015-01-28 04:21:26ned.deilylinkissue23335 messages
2015-01-28 04:21:25ned.deilycreate