lib/ssl.c: fix libre- and boringssl
authorEnno Boland <g@s01.de>
Thu, 5 May 2016 23:49:49 +0000 (07:49 +0800)
committerAndy Green <andy@warmcat.com>
Thu, 5 May 2016 23:49:49 +0000 (07:49 +0800)
changelog
lib/ssl.c

index 9fbcffb..6b67214 100644 (file)
--- a/changelog
+++ b/changelog
@@ -1,6 +1,12 @@
 Changelog
 ---------
 
+Fixes
+-----
+
+1) OpenSSL version tests not needed on LibreSSL and BoringSSL
+
+
 v2.0.0
 ======
 
index 0a028bb..685584e 100644 (file)
--- a/lib/ssl.c
+++ b/lib/ssl.c
@@ -197,7 +197,9 @@ lws_ssl_destroy(struct lws_vhost *vhost)
 #if (OPENSSL_VERSION_NUMBER < 0x01000000) || defined(USE_WOLFSSL)
        ERR_remove_state(0);
 #else
-#if (OPENSSL_VERSION_NUMBER >= 0x10100005L)
+#if (OPENSSL_VERSION_NUMBER >= 0x10100005L) && \
+       !defined(LIBRESSL_VERSION_NUMBER) && \
+       !defined(OPENSSL_IS_BORINGSSL)
        ERR_remove_thread_state();
 #else
        ERR_remove_thread_state(NULL);
@@ -689,7 +691,9 @@ lws_ssl_context_destroy(struct lws_context *context)
 #if (OPENSSL_VERSION_NUMBER < 0x01000000) || defined(USE_WOLFSSL)
        ERR_remove_state(0);
 #else
-#if (OPENSSL_VERSION_NUMBER >= 0x10100005L)
+#if (OPENSSL_VERSION_NUMBER >= 0x10100005L) && \
+       !defined(LIBRESSL_VERSION_NUMBER) && \
+       !defined(OPENSSL_IS_BORINGSSL)
        ERR_remove_thread_state();
 #else
        ERR_remove_thread_state(NULL);