diff options
author | makise-homura <akemi_homura@kurisa.ch> | 2024-01-15 00:16:25 (GMT) |
---|---|---|
committer | makise-homura <akemi_homura@kurisa.ch> | 2024-01-16 19:11:08 (GMT) |
commit | 67de0c197b6a1c1cba36a473fe4c62ea64fc6bae (patch) | |
tree | dd9e2541fc6e96b3c6b0ad5e94e8399f568002a8 | |
parent | 9bc2aba3b4abb55233026e9e4e9093392845bf76 (diff) | |
download | CMake-67de0c197b6a1c1cba36a473fe4c62ea64fc6bae.zip CMake-67de0c197b6a1c1cba36a473fe4c62ea64fc6bae.tar.gz CMake-67de0c197b6a1c1cba36a473fe4c62ea64fc6bae.tar.bz2 |
cmcurl: fix X509_STORE_up_ref issue not just on LCC 1.23, but on LCC <= 1.23
-rw-r--r-- | Utilities/cmcurl/lib/vtls/openssl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Utilities/cmcurl/lib/vtls/openssl.c b/Utilities/cmcurl/lib/vtls/openssl.c index ca6d931..4bcb340 100644 --- a/Utilities/cmcurl/lib/vtls/openssl.c +++ b/Utilities/cmcurl/lib/vtls/openssl.c @@ -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 |