From 1a5d9b871d848d356fbbc207a7b83c8f9b97a57d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Sun, 8 Sep 2013 19:39:18 +0000 Subject: [PATCH] LDNS needs OpenSSL. This wasn't a problem as long as it was only build statically, since any program using it would have to link with it anyway. Approved by: re (blanket) --- lib/libldns/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/libldns/Makefile b/lib/libldns/Makefile index 0fb570b64c5..ae3518a4f26 100644 --- a/lib/libldns/Makefile +++ b/lib/libldns/Makefile @@ -18,6 +18,9 @@ SRCS= buffer.c dane.c dname.c dnssec.c dnssec_sign.c dnssec_verify.c \ SRCS+= b32_ntop.c b32_pton.c b64_ntop.c b64_pton.c +DPADD+= ${LIBCRYPTO} +LDADD+= -lcrypto + WARNS ?= 3 .include