ports/security/trousers/files/patch-src_trspi_crypto_openssl_rsa.c
Bernard Spil adaeb55b5e security/trousers: Fix build with LibreSSl 2.7
- LibreSSL 2.7 adds OpenSSL 1.1 API

PR:		227169
Approved by:	maintainer time-out
2018-04-21 20:38:38 +00:00

11 lines
398 B
C

--- src/trspi/crypto/openssl/rsa.c.orig 2016-11-23 12:26:19 UTC
+++ src/trspi/crypto/openssl/rsa.c
@@ -38,7 +38,7 @@
#define DEBUG_print_openssl_errors()
#endif
-#if OPENSSL_VERSION_NUMBER < 0x10100001L
+#if OPENSSL_VERSION_NUMBER < 0x10100001L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20700000L)
static int
RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d)
{