fix glibc to work with all versions of binutils, fixes #7133 - thanks to marek siller

SVN-Revision: 27210
master
Mirko Vogt 13 years ago
parent 8d48672c10
commit 74fecd0366
  1. 15
      toolchain/glibc/patches/2.7/103-binutils_2_20.patch
  2. 20
      toolchain/glibc/patches/2.7/104-binutils_2_20.patch

@ -0,0 +1,15 @@
--- glibc-2.7-old/configure.in 2010-08-05 15:41:13.379279183 +0200
+++ glibc-2.7-new/configure.in 2010-08-05 15:46:30.236940604 +0200
@@ -842,10 +842,10 @@
# Accept binutils 2.13 or newer.
AC_CHECK_PROG_VER(AS, $AS, --version,
[GNU assembler.* \([0-9]*\.[0-9.]*\)],
- [2.1[3-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]*], 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

@ -0,0 +1,20 @@
--- glibc-2.7-old/configure 2010-08-05 16:21:23.899880380 +0200
+++ glibc-2.7-new/configure 2010-08-05 16:26:25.269006172 +0200
@@ -4527,7 +4527,7 @@
ac_prog_version=`$AS --version 2>&1 | sed -n 's/^.*GNU assembler.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
case $ac_prog_version in
'') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
- 2.1[3-9]*)
+ 2.1[3-9]*|2.1[0-9][0-9]*|2.[2-9]*|[3-9].*)
ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
*) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
@@ -4590,7 +4590,7 @@
ac_prog_version=`$LD --version 2>&1 | sed -n 's/^.*GNU ld.* \([0-9][0-9]*\.[0-9.]*\).*$/\1/p'`
case $ac_prog_version in
'') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
- 2.1[3-9]*)
+ 2.1[3-9]*|2.1[0-9][0-9]*|2.[2-9]*|[3-9].*)
ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
*) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
Loading…
Cancel
Save