summaryrefslogtreecommitdiffstats
path: root/extra/libmsn/openssl1.patch
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-10-14 09:03:46 +0200
committertnut <thierryn1 at hispeed dot ch>2010-10-14 09:03:46 +0200
commit9ba8681a78ee7bec60cff9d3272f1d640864c70f (patch)
tree6cf61882bb553aa14669f2192fcd7871cf59c413 /extra/libmsn/openssl1.patch
parent0e72bb3b34b64499186680fdf3257f4643162b25 (diff)
downloadnutyx-pakxe-9ba8681a78ee7bec60cff9d3272f1d640864c70f.tar.gz
nutyx-pakxe-9ba8681a78ee7bec60cff9d3272f1d640864c70f.tar.bz2
nutyx-pakxe-9ba8681a78ee7bec60cff9d3272f1d640864c70f.tar.xz
nutyx-pakxe-9ba8681a78ee7bec60cff9d3272f1d640864c70f.zip
libmsn, port nettoyé
Diffstat (limited to 'extra/libmsn/openssl1.patch')
-rw-r--r--extra/libmsn/openssl1.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/extra/libmsn/openssl1.patch b/extra/libmsn/openssl1.patch
deleted file mode 100644
index 0ff7de898..000000000
--- a/extra/libmsn/openssl1.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- libmsn-4.1/msntest/msntest.cpp~ 2010-04-01 15:05:13.248056050 +0200
-+++ libmsn-4.1/msntest/msntest.cpp 2010-04-01 15:07:18.938878993 +0200
-@@ -259,7 +259,13 @@
- if(mySocketsSsl[i].isSSL && !mySocketsSsl[i].isConnected)
- {
- BIO *bio_socket_new;
-- SSL_METHOD *meth=NULL;
-+
-+#if OPENSSL_VERSION_NUMBER >= 0x10000000L
-+ const SSL_METHOD *meth=NULL;
-+#else
-+ SSL_METHOD *meth=NULL;
-+#endif
-+
- meth=SSLv23_client_method();
- SSLeay_add_ssl_algorithms();
- mySocketsSsl[i].ctx = SSL_CTX_new(meth);