Commit e0f14e39 authored by Stefan Eissing's avatar Stefan Eissing
Browse files

On the 2.4.x branch:

merge r1836095 from trunk:
* using the, hopefully correct, ever elusive libressl version numbering check for the new openssl API calls, fixes PR 62548.



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1836096 13f79535-47bb-0310-9956-ffa450edef68
parent eaf46ca8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@

#if defined(LIBRESSL_VERSION_NUMBER)
/* Missing from LibreSSL */
#define MD_USE_OPENSSL_PRE_1_1_API (LIBRESSL_VERSION_NUMBER < 0x2080000f)
#define MD_USE_OPENSSL_PRE_1_1_API (LIBRESSL_VERSION_NUMBER < 0x2070000f)
#else /* defined(LIBRESSL_VERSION_NUMBER) */
#define MD_USE_OPENSSL_PRE_1_1_API (OPENSSL_VERSION_NUMBER < 0x10100000L)
#endif