[kde-freebsd] [Bug 199134] [PATCH] devel/qca patch to compile with libressl

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Fri Apr 3 16:43:54 UTC 2015


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199134

--- Comment #3 from Bernard Spil <spil.oss at gmail.com> ---
Try this...

ssl.h -> opensslconf.h -> opensslfeatures.h defines OPENSSL_NO_COMP

--- plugins/qca-ossl/qca-ossl.cpp.orig  2014-11-06 09:15:45.000000000 +0100
+++ plugins/qca-ossl/qca-ossl.cpp       2015-04-03 18:39:25.001532367 +0200
@@ -5801,7 +5801,11 @@
        {
                SessionInfo sessInfo;

+#ifndef OPENSSL_NO_COMP
                sessInfo.isCompressed = (0 != ssl->session->compress_meth);
+#else
+               sessInfo.isCompressed = 0;
+#fi

                if (ssl->version == TLS1_VERSION)
                        sessInfo.version = TLS::TLS_v1;

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the kde-freebsd mailing list