Subject: | SSLv2_method seems to have gone from upstream |
I see more and more fails on cpantesters. On analysis[0] you can see
more than one reason for the fails but the most outstanding one is that
SSLv2_method() is not available in recent libssl versions.
This patch should do:
% diff -u SSLeay.xs{-20110827,}
--- SSLeay.xs-20110827 2010-01-30 21:34:13.000000000 +0100
+++ SSLeay.xs 2011-08-27 14:29:03.000000000 +0200
@@ -725,13 +725,6 @@
RETVAL
SSL_CTX *
-SSL_CTX_v2_new()
- CODE:
- RETVAL = SSL_CTX_new (SSLv2_method());
- OUTPUT:
- RETVAL
-
-SSL_CTX *
SSL_CTX_v3_new()
CODE:
RETVAL = SSL_CTX_new (SSLv3_method());
@@ -1822,9 +1815,6 @@
#endif
SSL_METHOD *
-SSLv2_method()
-
-SSL_METHOD *
SSLv3_method()
SSL_METHOD *
With this patch I see all tests passing.
HTH, Let me know if you need more information
[0]
http://analysis.cpantesters.org/solved?distv=Net-SSLeay-1.36#qr%3A%28Can%27t%20load%20.*%29