Date: Sun, 8 Sep 2013 19:39:19 +0000 (UTC) From: Dag-Erling Smørgrav <des@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r255402 - head/lib/libldns Message-ID: <201309081939.r88JdJ3K010184@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: des Date: Sun Sep 8 19:39:18 2013 New Revision: 255402 URL: http://svnweb.freebsd.org/changeset/base/255402 Log: 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) Modified: head/lib/libldns/Makefile Modified: head/lib/libldns/Makefile ============================================================================== --- head/lib/libldns/Makefile Sun Sep 8 19:29:45 2013 (r255401) +++ head/lib/libldns/Makefile Sun Sep 8 19:39:18 2013 (r255402) @@ -18,6 +18,9 @@ SRCS= buffer.c dane.c dname.c dnssec.c d SRCS+= b32_ntop.c b32_pton.c b64_ntop.c b64_pton.c +DPADD+= ${LIBCRYPTO} +LDADD+= -lcrypto + WARNS ?= 3 .include <bsd.lib.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309081939.r88JdJ3K010184>