aboutsummaryrefslogtreecommitdiff
path: root/dns
diff options
context:
space:
mode:
authorRalf van der Enden <tremere@cainites.net>2023-06-28 10:04:57 +0000
committerFernando ApesteguĂ­a <fernape@FreeBSD.org>2023-06-29 11:41:44 +0000
commit6b6f60bbc3b9870016650d3feab9a39e8c02d1c0 (patch)
treee1a36949a12048e1fda51640e5023cb1d3f248ac /dns
parentcf2a904c0339511209d56b05e948db87cdd15acb (diff)
downloadports-6b6f60bbc3b9870016650d3feab9a39e8c02d1c0.tar.gz
ports-6b6f60bbc3b9870016650d3feab9a39e8c02d1c0.zip
dns/powerdns-recursor: fix build on 14.0-CURRENT (+ OpenSSL 3.0.9)
This fixes the way OpenSSL is detected (it now uses a non-deprecated function), which is not available anymore on 14.0-CURRENT. Doesn't change anything for previous versions of FreeBSD. PR: 272232 Reported by: tremere@cainites.net (maintainer)
Diffstat (limited to 'dns')
-rw-r--r--dns/powerdns-recursor/files/patch-m4_pdns__check__libcrypto.m411
1 files changed, 10 insertions, 1 deletions
diff --git a/dns/powerdns-recursor/files/patch-m4_pdns__check__libcrypto.m4 b/dns/powerdns-recursor/files/patch-m4_pdns__check__libcrypto.m4
index 7d4a832a79e6..7348da12d752 100644
--- a/dns/powerdns-recursor/files/patch-m4_pdns__check__libcrypto.m4
+++ b/dns/powerdns-recursor/files/patch-m4_pdns__check__libcrypto.m4
@@ -1,4 +1,4 @@
---- m4/pdns_check_libcrypto.m4.orig 2020-11-16 16:30:04 UTC
+--- m4/pdns_check_libcrypto.m4.orig 2023-03-27 15:08:37 UTC
+++ m4/pdns_check_libcrypto.m4
@@ -75,8 +75,10 @@ AC_DEFUN([PDNS_CHECK_LIBCRYPTO], [
for ssldir in $ssldirs; do
@@ -13,3 +13,12 @@
LIBCRYPTO_LIBS="-lcrypto"
found=true
AC_MSG_RESULT([yes])
+@@ -108,7 +110,7 @@ AC_DEFUN([PDNS_CHECK_LIBCRYPTO], [
+ LIBS="$LIBCRYPTO_LIBS $LIBS"
+ CPPFLAGS="$LIBCRYPTO_INCLUDES $CPPFLAGS"
+ AC_LINK_IFELSE(
+- [AC_LANG_PROGRAM([#include <openssl/crypto.h>], [ERR_load_CRYPTO_strings()])],
++ [AC_LANG_PROGRAM([#include <openssl/bn.h>], [BN_new()])],
+ [
+ AC_MSG_RESULT([yes])
+ AC_CHECK_FUNCS([RAND_bytes RAND_pseudo_bytes CRYPTO_memcmp OPENSSL_init_crypto EVP_MD_CTX_new EVP_MD_CTX_free RSA_get0_key])