cmcurl: fix X509_STORE_up_ref issue not just on LCC 1.23, but on LCC <= 1.23

This commit is contained in:
makise-homura
2024-01-15 03:16:25 +03:00
parent 9bc2aba3b4
commit 67de0c197b

View File

@@ -293,9 +293,9 @@ typedef unsigned long sslerr_t;
#define HAVE_SSL_X509_STORE_SHARE
#endif
/* FIXME: On a specific machine using LCC 1.23, OpenSSL 2.0.0
* is found but does not seem to have X509_STORE_up_ref. */
#if defined(__LCC__) && defined(__EDG__) && (__LCC__ == 123)
/* FIXME: On LCC <= 1.23, OpenSSL 2.0.0 may be
* found but does not seem to have X509_STORE_up_ref. */
#if defined(__LCC__) && defined(__EDG__) && (__LCC__ <= 123)
#undef HAVE_SSL_X509_STORE_SHARE
#endif