BUILD: acme: need HAVE_ASN1_TIME_TO_TM

Restrict the build of the ACME feature to libraries which provide
ASN1_TIME_to_tm() function.
This commit is contained in:
William Lallemand 2025-05-02 15:57:31 +02:00
parent 626de9538e
commit 878a3507df

View File

@ -132,7 +132,7 @@
#define HAVE_JWS #define HAVE_JWS
#endif #endif
#if (defined(HAVE_JWS)) #if (defined(HAVE_JWS) && defined(HAVE_ASN1_TIME_TO_TM))
#define HAVE_ACME #define HAVE_ACME
#endif #endif