diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2009-09-08 16:04:30 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-09-08 16:04:30 -0700 |
commit | 0549ce8ec1f66a41c59815e50dd48ffd74fabb52 (patch) | |
tree | ac397f972a494a6e17b58758f44b60f254f96d25 /configure.in | |
parent | 6dfeb5245bca9f2ef94815ed9a7b979a9e0be744 (diff) | |
download | glibc-0549ce8ec1f66a41c59815e50dd48ffd74fabb52.zip glibc-0549ce8ec1f66a41c59815e50dd48ffd74fabb52.tar.gz glibc-0549ce8ec1f66a41c59815e50dd48ffd74fabb52.tar.bz2 |
Support binutils 2.100 and 3.0.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 7c4f71f..745e769 100644 --- a/configure.in +++ b/configure.in @@ -897,10 +897,10 @@ AC_SUBST(MIG)dnl Needed by sysdeps/mach/configure.in # Accept binutils 2.13 or newer. AC_CHECK_PROG_VER(AS, $AS, --version, [GNU assembler.* \([0-9]*\.[0-9.]*\)], - [2.1[3-9]*|[2-9].[2-9]*], AS=: critic_missing="$critic_missing as") + [2.1[3-9]*|2.1[0-9][0-9]*|2.[2-9]*|[3-9].*], AS=: critic_missing="$critic_missing as") AC_CHECK_PROG_VER(LD, $LD, --version, [GNU ld.* \([0-9][0-9]*\.[0-9.]*\)], - [2.1[3-9]*|[2-9].[2-9]*], LD=: critic_missing="$critic_missing ld") + [2.1[3-9]*|2.1[0-9][0-9]*|2.[2-9]*]|[3-9].*, LD=: critic_missing="$critic_missing ld") # We need the physical current working directory. We cannot use the # "pwd -P" shell builtin since that's not portable. Instead we try to |