summaryrefslogtreecommitdiff
path: root/net-im/libmsn/files/patch-msntest__msntest.cpp
diff options
context:
space:
mode:
authorRaphael Kubo da Costa <rakuco@FreeBSD.org>2011-11-13 20:38:28 +0000
committerRaphael Kubo da Costa <rakuco@FreeBSD.org>2011-11-13 20:38:28 +0000
commitb331810004f282ebc9f72fd72342c6e6f5f766e0 (patch)
tree8be60254e3d85755bd0ca90a608b03d15f388fec /net-im/libmsn/files/patch-msntest__msntest.cpp
parentAdd a missing dependency to exiv2. (diff)
Update to 4.2.
PR: 162505 Approved by: avilla (mentor, implicit), Shane Bell <decept0@gmail.com (maintainer) Feature safe: yes
Notes
Notes: svn path=/head/; revision=285717
Diffstat (limited to 'net-im/libmsn/files/patch-msntest__msntest.cpp')
-rw-r--r--net-im/libmsn/files/patch-msntest__msntest.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/net-im/libmsn/files/patch-msntest__msntest.cpp b/net-im/libmsn/files/patch-msntest__msntest.cpp
deleted file mode 100644
index b4dff286e5b7..000000000000
--- a/net-im/libmsn/files/patch-msntest__msntest.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
---- msntest/msntest.cpp 2010/01/22 12:45:14 119
-+++ msntest/msntest.cpp 2010/05/03 19:33:50 120
-@@ -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);