aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-03-04 01:09:43 +0000
committerMike Frysinger <vapier@gentoo.org>2005-03-04 01:09:43 +0000
commitca1b6fc74568e5c272c2b526429fcded5c8bd663 (patch)
treef584ca24641e674c21755221a03c6fe6a6fbff82
parentdf7bfb433e23eac81ad0feb946d0a1e62be01d03 (diff)
downloadbusybox-w32-ca1b6fc74568e5c272c2b526429fcded5c8bd663.tar.gz
busybox-w32-ca1b6fc74568e5c272c2b526429fcded5c8bd663.tar.bz2
busybox-w32-ca1b6fc74568e5c272c2b526429fcded5c8bd663.zip
newlib fixe from Shaun Jackman
-rw-r--r--include/busybox.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/busybox.h b/include/busybox.h
index f6f575957..3ff3d8a37 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -32,10 +32,10 @@
32#include <sys/stat.h> 32#include <sys/stat.h>
33#include <sys/types.h> 33#include <sys/types.h>
34 34
35#if __GNU_LIBRARY__ < 5 35#if __GNU_LIBRARY__ < 5 && \
36#ifndef __dietlibc__ 36 !defined(__dietlibc__) && \
37#error "Sorry, libc5 is not supported" 37 !defined(_NEWLIB_VERSION)
38#endif 38#error "Sorry, this libc version is not supported :("
39#endif 39#endif
40 40
41#ifndef BB_EXTRA_VERSION 41#ifndef BB_EXTRA_VERSION