id: do not abort build if we use internal password/group functions.

This commit is contained in:
Denis Vlasenko 2008-11-17 00:12:17 +00:00
parent 3eb4466bf8
commit de7a52fff2
1 changed files with 2 additions and 0 deletions

View File

@ -17,11 +17,13 @@
#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),