summaryrefslogtreecommitdiffstats
path: root/tdeio/kssl/kopenssl.h
diff options
context:
space:
mode:
authorMavridis Philippe <mfilippos@yandex.ru>2019-05-09 14:32:06 +0300
committerMavridis Philippe <mfilippos@yandex.ru>2019-05-10 14:42:15 +0300
commit86fea6f5c542ba7113dbc598d8b4c18be69901f2 (patch)
treed1027fb852746451aba3db198a07e1ba0d42a064 /tdeio/kssl/kopenssl.h
parentdadafca88037390b0e833d904ae5b80f5b9b4061 (diff)
downloadtdelibs-86fea6f5c542ba7113dbc598d8b4c18be69901f2.tar.gz
tdelibs-86fea6f5c542ba7113dbc598d8b4c18be69901f2.zip
Added some checks in KSSL (in TDEIO) to correctly recognize LibreSSL (which is a fork of OpenSSL 1.0.1b)
This resolves issue #28. Signed-off-by: Mavridis Philippe <mfilippos@yandex.ru>
Diffstat (limited to 'tdeio/kssl/kopenssl.h')
-rw-r--r--tdeio/kssl/kopenssl.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/tdeio/kssl/kopenssl.h b/tdeio/kssl/kopenssl.h
index be335b199..312aef2c8 100644
--- a/tdeio/kssl/kopenssl.h
+++ b/tdeio/kssl/kopenssl.h
@@ -48,7 +48,8 @@ class KOpenSSLProxyPrivate;
#include <openssl/stack.h>
#include <openssl/bn.h>
#undef crypt
-#if OPENSSL_VERSION_NUMBER >= 0x10100000L
+
+#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER)
#define STACK OPENSSL_STACK
#else
#if OPENSSL_VERSION_NUMBER >= 0x10000000L
@@ -59,7 +60,7 @@ class KOpenSSLProxyPrivate;
#include <kstaticdeleter.h>
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
typedef int (*X509_STORE_CTX_verify_cb)(int, X509_STORE_CTX *);
typedef int X509_LOOKUP_TYPE;
#endif