diff options
Diffstat (limited to 'include/busybox.h')
-rw-r--r-- | include/busybox.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/busybox.h b/include/busybox.h index f6f5759..3ff3d8a 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -32,10 +32,10 @@ #include <sys/stat.h> #include <sys/types.h> -#if __GNU_LIBRARY__ < 5 -#ifndef __dietlibc__ -#error "Sorry, libc5 is not supported" -#endif +#if __GNU_LIBRARY__ < 5 && \ + !defined(__dietlibc__) && \ + !defined(_NEWLIB_VERSION) +#error "Sorry, this libc version is not supported :(" #endif #ifndef BB_EXTRA_VERSION |