[BusyBox-cvs] svn commit: trunk/busybox/include

vapier at busybox.net vapier at busybox.net
Fri Mar 4 01:09:44 UTC 2005


Author: vapier
Date: 2005-03-03 18:09:43 -0700 (Thu, 03 Mar 2005)
New Revision: 9969

Log:
newlib fixe from Shaun Jackman

Modified:
   trunk/busybox/include/busybox.h


Changeset:
Modified: trunk/busybox/include/busybox.h
===================================================================
--- trunk/busybox/include/busybox.h	2005-03-03 20:35:57 UTC (rev 9968)
+++ trunk/busybox/include/busybox.h	2005-03-04 01:09:43 UTC (rev 9969)
@@ -32,11 +32,11 @@
 #include <sys/stat.h>
 #include <sys/types.h>
 
-#if __GNU_LIBRARY__ < 5
-#ifndef __dietlibc__
-#error "Sorry, libc5 is not supported"
+#if __GNU_LIBRARY__ < 5 && \
+    !defined(__dietlibc__) && \
+    !defined(_NEWLIB_VERSION)
+#error "Sorry, this libc version is not supported :("
 #endif
-#endif
 
 #ifndef BB_EXTRA_VERSION
 #define BB_BANNER "BusyBox v" BB_VER " (" BB_BT ")"




More information about the busybox-cvs mailing list