mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 21:30:31 -04:00
ChangeLog: https://blog.powerdns.com/2024/01/10/powerdns-recursor-5-0-1-released PR: 276520 Reported by: tremere@cainites.net (maintainer)
15 lines
708 B
Text
15 lines
708 B
Text
--- m4/pdns_check_libcrypto.m4.orig 2023-09-13 09:07:48 UTC
|
|
+++ m4/pdns_check_libcrypto.m4
|
|
@@ -75,8 +75,10 @@ AC_DEFUN([PDNS_CHECK_LIBCRYPTO], [
|
|
for ssldir in $ssldirs; do
|
|
AC_MSG_CHECKING([for openssl/crypto.h in $ssldir])
|
|
if test -f "$ssldir/include/openssl/crypto.h"; then
|
|
- LIBCRYPTO_INCLUDES="-I$ssldir/include"
|
|
- LIBCRYPTO_LDFLAGS="-L$ssldir/lib"
|
|
+ if test $ssldir != /usr; then
|
|
+ LIBCRYPTO_INCLUDES="-I$ssldir/include"
|
|
+ LIBCRYPTO_LDFLAGS="-L$ssldir/lib"
|
|
+ fi
|
|
LIBCRYPTO_LIBS="-lcrypto"
|
|
found=true
|
|
AC_MSG_RESULT([yes])
|