svn commit: r355943 - head/share/mk
Ed Maste
emaste at FreeBSD.org
Fri Dec 20 20:24:00 UTC 2019
Author: emaste
Date: Fri Dec 20 20:23:59 2019
New Revision: 355943
URL: https://svnweb.freebsd.org/changeset/base/355943
Log:
add LDNS build knob dependency on OPENSSL
Reported by: Michael Dexter's run of the Build Options Survey
MFC after: 1 week
Sponsored by: The FreeBSD Foundation
Modified:
head/share/mk/src.opts.mk
Modified: head/share/mk/src.opts.mk
==============================================================================
--- head/share/mk/src.opts.mk Fri Dec 20 20:15:34 2019 (r355942)
+++ head/share/mk/src.opts.mk Fri Dec 20 20:23:59 2019 (r355943)
@@ -464,11 +464,6 @@ MK_CASPER:= no
MK_LIBTHR:= no
.endif
-.if ${MK_LDNS} == "no"
-MK_LDNS_UTILS:= no
-MK_UNBOUND:= no
-.endif
-
.if ${MK_SOURCELESS} == "no"
MK_SOURCELESS_HOST:= no
MK_SOURCELESS_UCODE:= no
@@ -514,6 +509,12 @@ MK_NLS_CATALOGS:= no
.if ${MK_OPENSSL} == "no"
MK_OPENSSH:= no
MK_KERBEROS:= no
+MK_LDNS:= no
+.endif
+
+.if ${MK_LDNS} == "no"
+MK_LDNS_UTILS:= no
+MK_UNBOUND:= no
.endif
.if ${MK_PF} == "no"
More information about the svn-src-head
mailing list