only check __GNU_LIBRARY__ if it is actually defined

This commit is contained in:
Mike Frysinger 2006-06-06 06:00:20 +00:00
parent 362dc2bf33
commit b16b5bb08f

View File

@ -161,11 +161,11 @@ __extension__ typedef unsigned long long __u64;
/* ---- miscellaneous --------------------------------------- */ /* ---- miscellaneous --------------------------------------- */
#if __GNU_LIBRARY__ < 5 && \ #if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ < 5 && \
!defined(__dietlibc__) && \ !defined(__dietlibc__) && \
!defined(_NEWLIB_VERSION) && \ !defined(_NEWLIB_VERSION) && \
!(defined __digital__ && defined __unix__) !(defined __digital__ && defined __unix__)
#error "Sorry, this libc version is not supported :(" # error "Sorry, this libc version is not supported :("
#endif #endif
#if defined __GLIBC__ || defined __UCLIBC__ \ #if defined __GLIBC__ || defined __UCLIBC__ \