aboutsummaryrefslogtreecommitdiff
path: root/Config.h
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2001-03-12 23:55:56 +0000
committerMark Whitley <markw@lineo.com>2001-03-12 23:55:56 +0000
commit53737c5421b2356ead7659249000daac7c1aea21 (patch)
treeab29fe206b9bd8ee75a0509d9a15e9696ffca230 /Config.h
parent6bff9cc487cc43eb54de5e712f9a6371cade1126 (diff)
downloadbusybox-53737c5421b2356ead7659249000daac7c1aea21.tar.gz
Some fixlets that didn't get added in the last 'syslogd split' patch:
- BB_LOGREAD should not be in the applet section - BB_FEATURE_IPC_SYSLOG added to the feature section - Some voodoo added to the Olympus section
Diffstat (limited to 'Config.h')
-rw-r--r--Config.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/Config.h b/Config.h
index b6f2f8a05..6492b893f 100644
--- a/Config.h
+++ b/Config.h
@@ -60,7 +60,6 @@
//#define BB_LOADKMAP
#define BB_LOGGER
//#define BB_LOGNAME
-#define BB_LOGREAD
#define BB_LS
#define BB_LSMOD
//#define BB_MAKEDEVS
@@ -200,7 +199,11 @@
#define BB_FEATURE_KLOGD
//
// enable syslogd -R remotehost
+//
#define BB_FEATURE_REMOTE_LOG
+// enable syslogd -C
+#define BB_FEATURE_IPC_SYSLOG
+//
//
//Simple tail implementation (2.34k vs 3k for the full one).
//Both provide 'tail -f', but this cuts out -c, -q, -s, and -v.
@@ -426,6 +429,12 @@
#endif
#endif
//
+#ifdef BB_SYSLOGD
+#if defined BB_FEATURE_IPC_SYSLOG
+#define BB_LOGREAD
+#endif
+#endif
+//
#if defined BB_DOS2UNIX
#define BB_UNIX2DOS
#endif