aboutsummaryrefslogtreecommitdiff
path: root/include/platform.h
diff options
context:
space:
mode:
authorOliver Metz <oliver.metz@googlemail.com>2011-10-09 02:08:42 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2011-10-09 02:08:42 +0200
commitcc87588a613ce5de8cb47b04f63ba267d1ecfd1e (patch)
tree051bf5b84bb754c08237fa267082d36e0e8396d6 /include/platform.h
parentfaf7c62f1d66c51e8162e30119bfc06d2bc68f1c (diff)
downloadbusybox-cc87588a613ce5de8cb47b04f63ba267d1ecfd1e.tar.gz
disable strverscmp usage if we build against uClibc-0.9.31
Signed-off-by: Oliver Metz <oliver.metz@googlemail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/platform.h')
-rw-r--r--include/platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/platform.h b/include/platform.h
index aa1bc331b..d79cc97e5 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -366,7 +366,7 @@ typedef unsigned smalluint;
#if defined(__UCLIBC_MAJOR__)
# if __UCLIBC_MAJOR__ == 0 \
&& ( __UCLIBC_MINOR__ < 9 \
- || (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ < 31) \
+ || (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ < 32) \
)
# undef HAVE_STRVERSCMP
# endif