aboutsummaryrefslogtreecommitdiff
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
parent6bff9cc487cc43eb54de5e712f9a6371cade1126 (diff)
downloadbusybox-w32-53737c5421b2356ead7659249000daac7c1aea21.tar.gz
busybox-w32-53737c5421b2356ead7659249000daac7c1aea21.tar.bz2
busybox-w32-53737c5421b2356ead7659249000daac7c1aea21.zip
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
-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 @@
60//#define BB_LOADKMAP 60//#define BB_LOADKMAP
61#define BB_LOGGER 61#define BB_LOGGER
62//#define BB_LOGNAME 62//#define BB_LOGNAME
63#define BB_LOGREAD
64#define BB_LS 63#define BB_LS
65#define BB_LSMOD 64#define BB_LSMOD
66//#define BB_MAKEDEVS 65//#define BB_MAKEDEVS
@@ -200,7 +199,11 @@
200#define BB_FEATURE_KLOGD 199#define BB_FEATURE_KLOGD
201// 200//
202// enable syslogd -R remotehost 201// enable syslogd -R remotehost
202//
203#define BB_FEATURE_REMOTE_LOG 203#define BB_FEATURE_REMOTE_LOG
204// enable syslogd -C
205#define BB_FEATURE_IPC_SYSLOG
206//
204// 207//
205//Simple tail implementation (2.34k vs 3k for the full one). 208//Simple tail implementation (2.34k vs 3k for the full one).
206//Both provide 'tail -f', but this cuts out -c, -q, -s, and -v. 209//Both provide 'tail -f', but this cuts out -c, -q, -s, and -v.
@@ -426,6 +429,12 @@
426#endif 429#endif
427#endif 430#endif
428// 431//
432#ifdef BB_SYSLOGD
433#if defined BB_FEATURE_IPC_SYSLOG
434#define BB_LOGREAD
435#endif
436#endif
437//
429#if defined BB_DOS2UNIX 438#if defined BB_DOS2UNIX
430#define BB_UNIX2DOS 439#define BB_UNIX2DOS
431#endif 440#endif