mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
27 lines
1.3 KiB
Diff
27 lines
1.3 KiB
Diff
diff --git a/configure.ac b/configure.ac
|
|
index 3278200..0fe3a76 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -489,7 +489,7 @@ if test "z$OPENSSL_FOUND" = "zyes" -a "z$OPENSSL_VERSION" = "z" ; then
|
|
if test "z$OPENSSL_VERSION" = "z" ; then
|
|
AC_EGREP_CPP(yes,[
|
|
#include <openssl/opensslv.h>
|
|
- #if OPENSSL_VERSION_NUMBER == 0x20000000L && defined(LIBRESSL_VERSION_NUMBER)
|
|
+ #if OPENSSL_VERSION_NUMBER == 0x20000000L && defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL
|
|
yes
|
|
#endif
|
|
],[
|
|
diff --git a/include/xmlsec/openssl/crypto.h b/include/xmlsec/openssl/crypto.h
|
|
index 96cc65b..353a2dd 100644
|
|
--- a/include/xmlsec/openssl/crypto.h
|
|
+++ b/include/xmlsec/openssl/crypto.h
|
|
@@ -43,7 +43,7 @@ XMLSEC_CRYPTO_EXPORT const xmlChar* xmlSecOpenSSLGetDefaultTrustedCertsFolde
|
|
* What version of the openssl API do we have? (also see configure.ac)
|
|
*
|
|
*******************************************************************/
|
|
-#if OPENSSL_VERSION_NUMBER == 0x20000000L && defined(LIBRESSL_VERSION_NUMBER)
|
|
+#if OPENSSL_VERSION_NUMBER == 0x20000000L && defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL
|
|
/* Libressl decided to take over OpenSSL version 2.0.0, likely will create
|
|
* issues down the road...
|
|
*/
|