svn commit: r358754 - stable/12/share/mk

Ed Maste emaste at FreeBSD.org
Sun Mar 8 18:12:08 UTC 2020


Author: emaste
Date: Sun Mar  8 18:12:07 2020
New Revision: 358754
URL: https://svnweb.freebsd.org/changeset/base/358754

Log:
  MFC r355943: add LDNS build knob dependency on OPENSSL
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/12/share/mk/src.opts.mk
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/share/mk/src.opts.mk
==============================================================================
--- stable/12/share/mk/src.opts.mk	Sun Mar  8 18:11:15 2020	(r358753)
+++ stable/12/share/mk/src.opts.mk	Sun Mar  8 18:12:07 2020	(r358754)
@@ -456,11 +456,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
@@ -507,6 +502,12 @@ MK_NLS_CATALOGS:= no
 MK_DMAGENT:=	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-all mailing list