We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1e6311 commit c21cde9Copy full SHA for c21cde9
crypto-openssl-10.cpp
@@ -29,8 +29,10 @@
29
*/
30
31
#include <openssl/opensslconf.h>
32
+#include <openssl/opensslv.h>
33
-#if !defined(OPENSSL_API_COMPAT)
34
+#if !defined(OPENSSL_API_COMPAT) && \
35
+ !(defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER >= 0x30500000L)
36
37
#include "crypto.hpp"
38
#include "key.hpp"
crypto-openssl-11.cpp
-#if defined(OPENSSL_API_COMPAT)
+#if defined(OPENSSL_API_COMPAT) || \
+ (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER >= 0x30500000L)
0 commit comments