diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-29 06:49:36 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-29 06:49:36 +0000 |
commit | ab310e1b1c2f85235e61c471802b53314da919f0 (patch) | |
tree | 415cf40159a0c2b6009a27df18b0cc45bea2e956 /coreutils | |
parent | 1cd1012a9063656a6b5b75dac8d400abd60cd643 (diff) | |
download | busybox-w32-ab310e1b1c2f85235e61c471802b53314da919f0.tar.gz busybox-w32-ab310e1b1c2f85235e61c471802b53314da919f0.tar.bz2 busybox-w32-ab310e1b1c2f85235e61c471802b53314da919f0.zip |
apply post-1.13.0 patches
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/id.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/coreutils/id.c b/coreutils/id.c index a75c226ef..6ddb23666 100644 --- a/coreutils/id.c +++ b/coreutils/id.c | |||
@@ -17,6 +17,14 @@ | |||
17 | 17 | ||
18 | #include "libbb.h" | 18 | #include "libbb.h" |
19 | 19 | ||
20 | #if !ENABLE_USE_BB_PWD_GRP | ||
21 | #if defined(__UCLIBC_MAJOR__) && (__UCLIBC_MAJOR__ == 0) | ||
22 | #if (__UCLIBC_MINOR__ < 9) || (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ < 30) | ||
23 | #error "Sorry, you need at least uClibc version 0.9.30 for id applet to build" | ||
24 | #endif | ||
25 | #endif | ||
26 | #endif | ||
27 | |||
20 | enum { | 28 | enum { |
21 | PRINT_REAL = (1 << 0), | 29 | PRINT_REAL = (1 << 0), |
22 | NAME_NOT_NUMBER = (1 << 1), | 30 | NAME_NOT_NUMBER = (1 << 1), |