aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-05-11 13:08:32 +0000
committerAndreas Jaeger <aj@suse.de>2001-05-11 13:08:32 +0000
commitfdbc7b954c705b4aaf6f58c8ed07804df3ca6de7 (patch)
tree2bf6dfcfa2981615a20eb0626b2d0f07bae8619f /sysdeps
parent2344bc54fb8136f351b31feee47500bae83288fd (diff)
downloadglibc-fdbc7b954c705b4aaf6f58c8ed07804df3ca6de7.tar
glibc-fdbc7b954c705b4aaf6f58c8ed07804df3ca6de7.tar.gz
glibc-fdbc7b954c705b4aaf6f58c8ed07804df3ca6de7.tar.bz2
glibc-fdbc7b954c705b4aaf6f58c8ed07804df3ca6de7.zip
* sysdeps/unix/sysv/linux/configure.in: Check binutils version on
MIPS.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/sysv/linux/configure.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/configure.in b/sysdeps/unix/sysv/linux/configure.in
index afe798218a..7337b9d603 100644
--- a/sysdeps/unix/sysv/linux/configure.in
+++ b/sysdeps/unix/sysv/linux/configure.in
@@ -191,3 +191,14 @@ ${ac_prefix}/include directory out of the way.])
AC_MSG_RESULT(ok)
fi
fi
+
+case "$machine" in
+ mips*)
+ AC_CHECK_PROG_VER(AS, $AS, --version,
+ [GNU assembler.* \([0-9]*\.[0-9.]*\(-ia64-[0-9]*\)*\)],
+ [2.11.90.0.[5-9]* | 2.11.90.[1-9]* | 2.11.9[1-9]* | 2.11.[1-9]* | 2.1[2-9]*| 2.[2-9]*],
+ AC_MSG_WARN([*** Your binutils versions are too old.
+*** We strongly advise to update binutils. For details check
+*** the FAQ and INSTALL documents.]))
+ ;;
+esac