patches/binutils/2.18.50.0.9/100-arm-uclibcgnueabi.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Oct 03 18:49:23 2009 +0200 (2009-10-03)
changeset 1560 79a609170a83
parent 652 bed1088fd34d
permissions -rw-r--r--
configure: split has_or_abort in two: one to check, one to abort

Split the has_or_abort function in two:
- one that checks if the tool if found,
- one that calls the above check, and aborts if not found

The rational behind this is to be able to check for a tool
and if not found, fallback to using our bundled version,
should the need arise (and I get time).
     1 diff -durN binutils-2.18.50.0.8.orig/configure binutils-2.18.50.0.8/configure
     2 --- binutils-2.18.50.0.8.orig/configure	2008-07-10 17:32:56.000000000 +0200
     3 +++ binutils-2.18.50.0.8/configure	2008-07-13 23:08:13.000000000 +0200
     4 @@ -2313,7 +2313,7 @@
     5      noconfigdirs="$noconfigdirs target-libffi target-qthreads"
     6      libgloss_dir=arm
     7      ;;
     8 -  arm*-*-linux-gnueabi)
     9 +  arm*-*-linux-gnueabi | arm*-*-linux-uclibcgnueabi)
    10      noconfigdirs="$noconfigdirs target-qthreads"
    11      case ${with_newlib} in
    12        no) noconfigdirs="$noconfigdirs target-newlib target-libgloss"
    13 diff -durN binutils-2.18.50.0.8.orig/configure.ac binutils-2.18.50.0.8/configure.ac
    14 --- binutils-2.18.50.0.8.orig/configure.ac	2008-07-10 17:32:56.000000000 +0200
    15 +++ binutils-2.18.50.0.8/configure.ac	2008-07-13 23:08:13.000000000 +0200
    16 @@ -562,7 +562,7 @@
    17      noconfigdirs="$noconfigdirs target-libffi target-qthreads"
    18      libgloss_dir=arm
    19      ;;
    20 -  arm*-*-linux-gnueabi)
    21 +  arm*-*-linux-gnueabi | arm*-*-linux-uclibcgnueabi)
    22      noconfigdirs="$noconfigdirs target-qthreads"
    23      case ${with_newlib} in
    24        no) noconfigdirs="$noconfigdirs target-newlib target-libgloss"