diff options
author | Rene Ladan <rene@FreeBSD.org> | 2013-07-26 19:19:20 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2013-07-26 19:19:20 +0000 |
commit | 66fee909266a1dedf3dfc1f03bb0841380d78805 (patch) | |
tree | 4c98d494bc4532b5dd5b19f4e47bcb3babf104c2 /x11/kdebase3/files/patch-kcontrol-crypto-crypto.cpp | |
parent | Remove 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
Diffstat (limited to 'x11/kdebase3/files/patch-kcontrol-crypto-crypto.cpp')
-rw-r--r-- | x11/kdebase3/files/patch-kcontrol-crypto-crypto.cpp | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/x11/kdebase3/files/patch-kcontrol-crypto-crypto.cpp b/x11/kdebase3/files/patch-kcontrol-crypto-crypto.cpp deleted file mode 100644 index 0ece543364a2..000000000000 --- a/x11/kdebase3/files/patch-kcontrol-crypto-crypto.cpp +++ /dev/null @@ -1,38 +0,0 @@ ---- kcontrol/crypto/crypto.cpp.orig 2012-09-26 18:12:48.000000000 +0200 -+++ kcontrol/crypto/crypto.cpp 2012-09-26 20:33:56.000000000 +0200 -@@ -2321,7 +2321,11 @@ - unsigned int i; - SSL_CTX *ctx; - SSL *ssl; -+#if OPENSSL_VERSION_NUMBER >= 0x10000000L -+const SSL_METHOD *meth; -+#else - SSL_METHOD *meth; -+#endif - - SSLv2Box->clear(); - SSLv3Box->clear(); -@@ -2337,7 +2341,11 @@ - CipherItem *item; - for (i=0; ; i++) { - int j, k; -+#if OPENSSL_VERSION_NUMBER >= 0x10000000L -+ const SSL_CIPHER *sc; -+#else - SSL_CIPHER *sc; -+#endif - sc = (meth->get_cipher)(i); - if (!sc) - break; -@@ -2365,7 +2373,11 @@ - - for (i=0; ; i++) { - int j, k; -+#if OPENSSL_VERSION_NUMBER >= 0x10000000L -+ const SSL_CIPHER *sc; -+#else - SSL_CIPHER *sc; -+#endif - sc = (meth->get_cipher)(i); - if (!sc) - break; |