Page MenuHomeFreeBSD

Use dependent options to auto enable _SUPPORT and CLANG_FULL options.
ClosedPublic

Authored by bdrewery on Jun 26 2018, 6:17 PM.
Tags
None
Referenced Files
F146956667: D16018.diff
Sat, Mar 7, 2:57 AM
Unknown Object (File)
Thu, Mar 5, 1:57 PM
Unknown Object (File)
Thu, Mar 5, 12:02 PM
Unknown Object (File)
Thu, Mar 5, 7:02 AM
Unknown Object (File)
Thu, Mar 5, 6:21 AM
Unknown Object (File)
Wed, Mar 4, 10:31 PM
Unknown Object (File)
Tue, Mar 3, 5:58 PM
Unknown Object (File)
Sun, Feb 8, 3:08 AM
Subscribers
None

Details

Summary

Sponsored by: Dell EMC

Test Plan

various make showconfig combinations

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision is now accepted and ready to land.Jun 26 2018, 7:18 PM

LGTM. What's the difference between e.g. MK_BLACKLIST and MK_BLACKLIST_SUPPORT, btw?

In D16018#339388, @dim wrote:

LGTM. What's the difference between e.g. MK_BLACKLIST and MK_BLACKLIST_SUPPORT, btw?

Used differently but I didn't look into why...

etc/Makefile:.if ${MK_BLACKLIST} != "no"
etc/rc.d/Makefile:.if ${MK_BLACKLIST} != "no"
lib/Makefile:SUBDIR.${MK_BLACKLIST}+=libblacklist
libexec/Makefile:.if ${MK_BLACKLIST} != "no"
libexec/fingerd/Makefile:.if ${MK_BLACKLIST_SUPPORT} != "no"
libexec/ftpd/Makefile:.if ${MK_BLACKLIST_SUPPORT} != "no"
secure/usr.sbin/sshd/Makefile:.if ${MK_BLACKLIST_SUPPORT} != "no"
share/mk/src.libnames.mk:.if ${MK_BLACKLIST} != "no"
share/mk/src.libnames.mk:.if ${MK_BLACKLIST} != "no"
targets/pseudo/userland/Makefile.depend:.if ${MK_BLACKLIST_SUPPORT} != "no"
targets/pseudo/userland/lib/Makefile.depend:.if ${MK_BLACKLIST_SUPPORT} != "no"
targets/pseudo/userland/libexec/Makefile.depend:.if ${MK_BLACKLIST_SUPPORT} != "no"
tools/build/mk/OptionalObsoleteFiles.inc:.if ${MK_BLACKLIST} == no
usr.sbin/Makefile:SUBDIR.${MK_BLACKLIST}+=      blacklistctl
usr.sbin/Makefile:SUBDIR.${MK_BLACKLIST}+=      blacklistd
This revision was automatically updated to reflect the committed changes.