On Sun, Oct 03, 2010 at 08:32:58PM +0200, Matthias Kilian wrote:
> On Sun, Oct 03, 2010 at 02:44:36PM +0200, Dorian Büttner wrote:
> > ok tryin what i found here https://trac.macports.org/ticket/25628 , 'll 
> > let you know...
> 
> Seems to work. I removed the #ifdef's, we really don't need them...

And here comes the next unbreakage, this time for x11/kde/base3. I don't
think this neede a bump (but I wasn't sure for x11/kde/libs3).

ok?


Index: patches/patch-kcontrol_crypto_crypto_cpp
===================================================================
RCS file: patches/patch-kcontrol_crypto_crypto_cpp
diff -N patches/patch-kcontrol_crypto_crypto_cpp
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-kcontrol_crypto_crypto_cpp    3 Oct 2010 19:08:36 -0000
@@ -0,0 +1,30 @@
+$OpenBSD$
+--- kcontrol/crypto/crypto.cpp.orig    Sun Oct  1 19:31:49 2006
++++ kcontrol/crypto/crypto.cpp Sun Oct  3 21:07:32 2010
+@@ -2321,7 +2321,7 @@ bool KCryptoConfig::loadCiphers() {
+ unsigned int i;
+ SSL_CTX *ctx;
+ SSL *ssl;
+-SSL_METHOD *meth;
++const SSL_METHOD *meth;
+ 
+   SSLv2Box->clear();
+   SSLv3Box->clear();
+@@ -2337,7 +2337,7 @@ SSL_METHOD *meth;
+   CipherItem *item;
+   for (i=0; ; i++) {
+     int j, k;
+-    SSL_CIPHER *sc;
++    const SSL_CIPHER *sc;
+     sc = (meth->get_cipher)(i);
+     if (!sc)
+       break;
+@@ -2365,7 +2365,7 @@ SSL_METHOD *meth;
+ 
+   for (i=0; ; i++) {
+     int j, k;
+-    SSL_CIPHER *sc;
++    const SSL_CIPHER *sc;
+     sc = (meth->get_cipher)(i);
+     if (!sc)
+       break;

Reply via email to