svn commit: r366208 - stable/12/share/mk
Ed Maste
emaste at FreeBSD.org
Sun Sep 27 22:48:44 UTC 2020
Author: emaste
Date: Sun Sep 27 22:48:43 2020
New Revision: 366208
URL: https://svnweb.freebsd.org/changeset/base/366208
Log:
MFC r356615: 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.
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 Sep 27 22:26:41 2020 (r366207)
+++ stable/12/share/mk/src.opts.mk Sun Sep 27 22:48:43 2020 (r366208)
@@ -477,6 +477,7 @@ MK_CTF:= no
MK_OPENSSL:= no
MK_OPENSSH:= no
MK_KERBEROS:= no
+MK_KERBEROS_SUPPORT:= no
.endif
.if ${MK_CXX} == "no"
@@ -508,6 +509,7 @@ MK_NLS_CATALOGS:= no
MK_DMAGENT:= no
MK_OPENSSH:= no
MK_KERBEROS:= no
+MK_KERBEROS_SUPPORT:= no
MK_LDNS:= no
MK_PKGBOOTSTRAP:= no
MK_SVN:= no
More information about the svn-src-all
mailing list