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
Unknown Object (File)
Wed, Apr 17, 2:49 AM
Unknown Object (File)
Thu, Apr 11, 8:05 PM
Unknown Object (File)
Jan 18 2024, 1:00 PM
Unknown Object (File)
Dec 20 2023, 4:05 AM
Unknown Object (File)
Apr 25 2023, 9:39 AM
Unknown Object (File)
Apr 7 2023, 4:27 PM
Subscribers
None

Details

Summary

Sponsored by: Dell EMC

Test Plan

various make showconfig combinations

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 17631
Build 17436: arc lint + arc unit

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.