Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-11-16 18:03:11 +0300
committerDenis Vlasenko <vda.linux@googlemail.com>2008-11-16 18:03:11 +0300
commit5ff12656911d12879f7302b3e4a237a7e8b2b184 (patch)
treea205ac83afb39c5579307f0e3c2fff1ada1bf25a /coreutils/id.c
parente88bd2d9318417d01e141e598c3870def0eddfcc (diff)
id: abort the build of uclibc is less than 0.9.30
Diffstat (limited to 'coreutils/id.c')
-rw-r--r--coreutils/id.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/coreutils/id.c b/coreutils/id.c
index a75c226ef..f33f9ab25 100644
--- a/coreutils/id.c
+++ b/coreutils/id.c
@@ -17,6 +17,12 @@
#include "libbb.h"
+#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
+
enum {
PRINT_REAL = (1 << 0),
NAME_NOT_NUMBER = (1 << 1),