svn commit: r356615 - head/share/mk

Ed Maste emaste at FreeBSD.org
Fri Jan 10 22:00:40 UTC 2020


Author: emaste
Date: Fri Jan 10 22:00:39 2020
New Revision: 356615
URL: https://svnweb.freebsd.org/changeset/base/356615

Log:
  src.opts.mk: force KERBEROS_SUPPORT off where KERBEROS forced off
  
  Explicitly setting WITHOUT_KERBEROS implies WITHOUT_KERBEROS_SUPPORT,
  but previously other cases that forced KERBEROS off (such as
  WITHOUT_CRYPT) did not also set KERBEROS_SUPPORT off.  Because the
  _SUPPORT dependent options (KERBEROS/KERBEROS_SUPPORT) are processed
  before other dependencies (CRYPT/KERBEROS) it's not easy to make this
  happen automatically.  Instead just explicitly set KERBEROS_SUPPORT
  off where we set KERBEROS off.
  
  Reported by:	Michael Dexter's Build Option Survey run

Modified:
  head/share/mk/src.opts.mk

Modified: head/share/mk/src.opts.mk
==============================================================================
--- head/share/mk/src.opts.mk	Fri Jan 10 21:51:27 2020	(r356614)
+++ head/share/mk/src.opts.mk	Fri Jan 10 22:00:39 2020	(r356615)
@@ -459,6 +459,7 @@ MK_CTF:=	no
 MK_OPENSSL:=	no
 MK_OPENSSH:=	no
 MK_KERBEROS:=	no
+MK_KERBEROS_SUPPORT:=	no
 .endif
 
 .if ${MK_CXX} == "no"
@@ -498,6 +499,7 @@ MK_NLS_CATALOGS:= no
 .if ${MK_OPENSSL} == "no"
 MK_OPENSSH:=	no
 MK_KERBEROS:=	no
+MK_KERBEROS_SUPPORT:=	no
 MK_LDNS:=	no
 .endif
 


More information about the svn-src-head mailing list