[toolchain/glibc] fix glibc to work with all versions of binutils, fixes #7133 -...
authormirko <mirko@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 17 Jun 2011 22:51:24 +0000 (22:51 +0000)
committermirko <mirko@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 17 Jun 2011 22:51:24 +0000 (22:51 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27210 3c298f89-4303-0410-b956-a3cf2f4a3e73

toolchain/glibc/patches/2.7/103-binutils_2_20.patch [new file with mode: 0644]
toolchain/glibc/patches/2.7/104-binutils_2_20.patch [new file with mode: 0644]

diff --git a/toolchain/glibc/patches/2.7/103-binutils_2_20.patch b/toolchain/glibc/patches/2.7/103-binutils_2_20.patch
new file mode 100644 (file)
index 0000000..66d44ad
--- /dev/null
@@ -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
diff --git a/toolchain/glibc/patches/2.7/104-binutils_2_20.patch b/toolchain/glibc/patches/2.7/104-binutils_2_20.patch
new file mode 100644 (file)
index 0000000..4e6ca5c
--- /dev/null
@@ -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;;
This page took 0.04128 seconds and 4 git commands to generate.