diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-07 06:02:39 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-07 06:02:39 +0000 |
commit | 049d6b8c0812b20c024d714a9008cc94713a6175 (patch) | |
tree | af95f506cc36561eef6204a1bd915bc0467cdc24 /miscutils | |
parent | b7d8dd9ab18c5001b5a86127c94a07e3ee0125c7 (diff) | |
download | busybox-049d6b8c0812b20c024d714a9008cc94713a6175.tar.gz |
Add CONFIG_FEATURE_SYSLOG which controls whether
bb_xx_msg will ever try to send output to syslog.
Add "select CONFIG_FEATURE_SYSLOG" to relevant applets.
This allows to omit syslog code if we do not have
any syslog-capable applets in the build.
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/Config.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/miscutils/Config.in b/miscutils/Config.in index 9ad342151..dc3da6f9a 100644 --- a/miscutils/Config.in +++ b/miscutils/Config.in @@ -23,6 +23,7 @@ config CONFIG_CROND bool "crond" default n select CONFIG_FEATURE_SUID + select CONFIG_FEATURE_SYSLOG help Crond is a background daemon that parses individual crontab files and executes commands on behalf of the users in question. @@ -66,6 +67,7 @@ config CONFIG_DC config CONFIG_DEVFSD bool "devfsd (obsolete)" default n + select CONFIG_FEATURE_SYSLOG help This is deprecated, and will be removed at the end of 2008. |