patches/glibc/2.3.6/300-fix-binutils-version-check.patch
author Remy Bohmer <linux@bohmer.net>
Sun Jul 11 22:23:34 2010 +0200 (2010-07-11)
changeset 2021 3e52a1510f87
permissions -rw-r--r--
debug/gdb: Fix compilation for Mingw hosts

GDB requires PDcurses instead of ncurses while running on Windows.
So, do not always compile ncurses in case GDB needs to build.

PDcurses is provided by an earlier build step and is not described in
this file.

Signed-off-by: Remy Bohmer <linux@bohmer.net>
[yann.morin.1998@anciense.nib.fr: we already have a way to detect ncurses usage]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     1 --- glibc-2.3.6.orig/configure	2010-03-08 23:10:00.000000000 +0100
     2 +++ glibc-2.3.6/configure	2010-03-08 23:12:00.000000000 +0100
     3 @@ -3917,7 +3917,7 @@
     4    ac_prog_version=`$AS -v </dev/null 2>&1 | sed -n 's/^.*GNU assembler.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
     5    case $ac_prog_version in
     6      '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
     7 -    2.1[3-9]*)
     8 +    2.1[3-9]*|2.[2-9]*|[3-9].*|1[0-9].*)
     9         ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
    10      *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
    11  
    12 @@ -3978,7 +3978,7 @@
    13    ac_prog_version=`$LD --version 2>&1 | sed -n 's/^.*GNU ld.* \([0-9][0-9]*\.[0-9.]*\).*$/\1/p'`
    14    case $ac_prog_version in
    15      '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
    16 -    2.1[3-9]*)
    17 +    2.1[3-9]*|2.[2-9]*|[3-9].*|1[0-9].*)
    18         ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
    19      *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
    20