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
This commit is contained in:
Ed Maste 2020-01-10 22:00:39 +00:00
parent 53f8212826
commit 0ce9d0af5b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=356615

View File

@ -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