summaryrefslogtreecommitdiff
path: root/security/qca-tls/files/patch-qca-tls.cpp
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
committerRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
commit66fee909266a1dedf3dfc1f03bb0841380d78805 (patch)
tree4c98d494bc4532b5dd5b19f4e47bcb3babf104c2 /security/qca-tls/files/patch-qca-tls.cpp
parentRemove support for Qt3/kde in preparation for full Qt3/kde3 removal (diff)
KDE3 and QT3 expired on 2013-07-01, remove these ports.
Unfortunately, this also affects some ports using QT3 as a GUI toolkit. Changes to infrastructure files: - bsd.kde.mk : obsolete, remove - bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while - CHANGES : document the removals from bsd.port.mk - KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead) - MOVED : add the removed ports PR: ports/180745 Submitted by: rene Approved by: portmgr (bapt) Exp-run by: bapt
Notes
Notes: svn path=/head/; revision=323748
Diffstat (limited to 'security/qca-tls/files/patch-qca-tls.cpp')
-rw-r--r--security/qca-tls/files/patch-qca-tls.cpp38
1 files changed, 0 insertions, 38 deletions
diff --git a/security/qca-tls/files/patch-qca-tls.cpp b/security/qca-tls/files/patch-qca-tls.cpp
deleted file mode 100644
index 446fead27c72..000000000000
--- a/security/qca-tls/files/patch-qca-tls.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
---- qca-tls.cpp.orig 2003-12-10 19:53:57.000000000 +0300
-+++ qca-tls.cpp 2012-02-28 14:06:08.000000000 +0400
-@@ -454,7 +454,11 @@
- if(!r) {
- // try this other public function, for whatever reason
- p = (void *)in;
-+#ifdef OSSL_098
-+ r = d2i_RSA_PUBKEY(NULL, (const unsigned char **)&p, len);
-+#else
- r = d2i_RSA_PUBKEY(NULL, (unsigned char **)&p, len);
-+#endif
- }
- if(r) {
- if(pub) {
-@@ -799,7 +803,11 @@
- bool createFromDER(const char *in, unsigned int len)
- {
- unsigned char *p = (unsigned char *)in;
-+#ifdef OSSL_098
-+ X509 *t = d2i_X509(NULL, (const unsigned char**)&p, len);
-+#else
- X509 *t = d2i_X509(NULL, &p, len);
-+#endif
- if(!t)
- return false;
- fromX509(t);
-@@ -945,7 +953,11 @@
- RSAKeyContext *key;
-
- SSL *ssl;
-+#if OPENSSL_VERSION_NUMBER >= 0x10000000L
-+ const SSL_METHOD *method;
-+#else
- SSL_METHOD *method;
-+#endif
- SSL_CTX *context;
- BIO *rbio, *wbio;
- CertContext cc;