svn commit: r255402 - head/lib/libldns

Dag-Erling Smørgrav des at FreeBSD.org
Sun Sep 8 19:39:19 UTC 2013


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>


More information about the svn-src-head mailing list