_______________________________________________ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"
Please note the Python 2.7 port is NOT broken with the openssl-devel
port. One does need to compile the openssl-devel port with NEXTPROTONEG
option enabled, as there's a bug in how Python 2.7.13 determines if
that's enabled or not. Or one could patch Modules/_ssl.c to detect it
properly. I.e., instead of "#ifdef OPENSSL_NPN_NEGOTIATED" use "#ifndef
OPENSSL_NO_NEXTPROTONEG". OPENSSL_NPN_NEGOTIATED is unconditionally
defined in ssl.h.