aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-14 17:18:52 +0000
committermarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-14 17:18:52 +0000
commitcf81b06dc1cb9178102006a494cbf43169532c96 (patch)
tree39f38fe4e121a5a97b89457b0f4a722f585be4d5
parent814b3561facc8492d5a4844daae45637691a81f8 (diff)
downloadbusybox-w32-cf81b06dc1cb9178102006a494cbf43169532c96.tar.gz
busybox-w32-cf81b06dc1cb9178102006a494cbf43169532c96.tar.bz2
busybox-w32-cf81b06dc1cb9178102006a494cbf43169532c96.zip
Applied patch from Giulio Orsero to fix some preprocessor bugs.
git-svn-id: svn://busybox.net/trunk/busybox@2074 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--logread.c4
-rw-r--r--sysklogd/logread.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/logread.c b/logread.c
index 85c1e2456..a89daccbb 100644
--- a/logread.c
+++ b/logread.c
@@ -26,9 +26,9 @@
26 26
27/* Stupid libc doesn't have a reliable way for use to know 27/* Stupid libc doesn't have a reliable way for use to know
28 * that libc5 is being used. Assume this is good enough */ 28 * that libc5 is being used. Assume this is good enough */
29#if defined __GLIBC__ || defined __UCLIBC__ 29#if ! defined __GLIBC__ || ! defined __UCLIBC__
30#error Sorry. Looks like you are using libc5. 30#error Sorry. Looks like you are using libc5.
31#error libc5 shm support isn't good enough. 31#error libc5 shm support isnt good enough.
32#error Please disable BB_FEATURE_IPC_SYSLOG 32#error Please disable BB_FEATURE_IPC_SYSLOG
33#endif 33#endif
34 34
diff --git a/sysklogd/logread.c b/sysklogd/logread.c
index 85c1e2456..a89daccbb 100644
--- a/sysklogd/logread.c
+++ b/sysklogd/logread.c
@@ -26,9 +26,9 @@
26 26
27/* Stupid libc doesn't have a reliable way for use to know 27/* Stupid libc doesn't have a reliable way for use to know
28 * that libc5 is being used. Assume this is good enough */ 28 * that libc5 is being used. Assume this is good enough */
29#if defined __GLIBC__ || defined __UCLIBC__ 29#if ! defined __GLIBC__ || ! defined __UCLIBC__
30#error Sorry. Looks like you are using libc5. 30#error Sorry. Looks like you are using libc5.
31#error libc5 shm support isn't good enough. 31#error libc5 shm support isnt good enough.
32#error Please disable BB_FEATURE_IPC_SYSLOG 32#error Please disable BB_FEATURE_IPC_SYSLOG
33#endif 33#endif
34 34