From: Oliver Metz Date: Sun, 9 Oct 2011 00:08:42 +0000 (+0200) Subject: disable strverscmp usage if we build against uClibc-0.9.31 X-Git-Tag: 1_20_0~212 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=cc87588a613ce5de8cb47b04f63ba267d1ecfd1e;p=oweals%2Fbusybox.git disable strverscmp usage if we build against uClibc-0.9.31 Signed-off-by: Oliver Metz Signed-off-by: Denys Vlasenko --- 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