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 d53ee00 commit 162adb8Copy full SHA for 162adb8
ext/openssl/openssl_missing.h
@@ -27,6 +27,9 @@ int ossl_EC_curve_nist2nid(const char *);
27
28
#if !defined(HAVE_X509_STORE_CTX_GET0_STORE)
29
# define X509_STORE_CTX_get0_store(x) ((x)->ctx)
30
+#elif defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL
31
+/* old LibreSSL provides this function but lacks the declaration */
32
+X509_STORE *X509_STORE_CTX_get0_store(X509_STORE_CTX *xs);
33
#endif
34
35
#if !defined(HAVE_SSL_IS_SERVER)
0 commit comments