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 /sysklogd | |
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 'sysklogd')
-rw-r--r-- | sysklogd/Config.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysklogd/Config.in b/sysklogd/Config.in index 05983b68d..399315208 100644 --- a/sysklogd/Config.in +++ b/sysklogd/Config.in @@ -89,6 +89,7 @@ config CONFIG_KLOGD bool "klogd" default n depends on CONFIG_SYSLOGD + select CONFIG_FEATURE_SYSLOG help klogd is a utility which intercepts and logs all messages from the Linux kernel and sends the messages @@ -99,6 +100,7 @@ config CONFIG_KLOGD config CONFIG_LOGGER bool "logger" default n + select CONFIG_FEATURE_SYSLOG help The logger utility allows you to send arbitrary text messages to the system log (i.e. the 'syslogd' utility) so |