From ab310e1b1c2f85235e61c471802b53314da919f0 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 29 Nov 2008 06:49:36 +0000 Subject: apply post-1.13.0 patches --- coreutils/id.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'coreutils') diff --git a/coreutils/id.c b/coreutils/id.c index a75c226..6ddb236 100644 --- a/coreutils/id.c +++ b/coreutils/id.c @@ -17,6 +17,14 @@ #include "libbb.h" +#if !ENABLE_USE_BB_PWD_GRP +#if defined(__UCLIBC_MAJOR__) && (__UCLIBC_MAJOR__ == 0) +#if (__UCLIBC_MINOR__ < 9) || (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ < 30) +#error "Sorry, you need at least uClibc version 0.9.30 for id applet to build" +#endif +#endif +#endif + enum { PRINT_REAL = (1 << 0), NAME_NOT_NUMBER = (1 << 1), -- cgit v1.1