Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 Jan 2020 22:00:40 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r356615 - head/share/mk
Message-ID:  <202001102200.00AM0eBf082664@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001102200.00AM0eBf082664>