Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 284393 | Differences between
and this patch

Collapse All | Expand All

(-)a/configure (-2 / +2 lines)
Lines 4839-4845 $as_echo_n "checking version of $AS... " >&6; } Link Here
4839
  ac_prog_version=`$AS --version 2>&1 | sed -n 's/^.*GNU assembler.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
4839
  ac_prog_version=`$AS --version 2>&1 | sed -n 's/^.*GNU assembler.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
4840
  case $ac_prog_version in
4840
  case $ac_prog_version in
4841
    '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
4841
    '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
4842
    2.1[3-9]*)
4842
    2.1[3-9]*|[2-9].[2-9]*)
4843
       ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
4843
       ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
4844
    *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
4844
    *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
4845
4845
Lines 4902-4908 $as_echo_n "checking version of $LD... " >&6; } Link Here
4902
  ac_prog_version=`$LD --version 2>&1 | sed -n 's/^.*GNU ld.* \([0-9][0-9]*\.[0-9.]*\).*$/\1/p'`
4902
  ac_prog_version=`$LD --version 2>&1 | sed -n 's/^.*GNU ld.* \([0-9][0-9]*\.[0-9.]*\).*$/\1/p'`
4903
  case $ac_prog_version in
4903
  case $ac_prog_version in
4904
    '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
4904
    '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
4905
    2.1[3-9]*)
4905
    2.1[3-9]*|[2-9].[2-9]*)
4906
       ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
4906
       ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
4907
    *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
4907
    *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
4908
4908
(-)a/configure.in (-2 / +2 lines)
Lines 897-906 AC_SUBST(MIG)dnl Needed by sysdeps/mach/configure.in Link Here
897
# Accept binutils 2.13 or newer.
897
# Accept binutils 2.13 or newer.
898
AC_CHECK_PROG_VER(AS, $AS, --version,
898
AC_CHECK_PROG_VER(AS, $AS, --version,
899
		  [GNU assembler.* \([0-9]*\.[0-9.]*\)],
899
		  [GNU assembler.* \([0-9]*\.[0-9.]*\)],
900
		  [2.1[3-9]*], AS=: critic_missing="$critic_missing as")
900
		  [2.1[3-9]*|[2-9].[2-9]*], AS=: critic_missing="$critic_missing as")
901
AC_CHECK_PROG_VER(LD, $LD, --version,
901
AC_CHECK_PROG_VER(LD, $LD, --version,
902
		  [GNU ld.* \([0-9][0-9]*\.[0-9.]*\)],
902
		  [GNU ld.* \([0-9][0-9]*\.[0-9.]*\)],
903
		  [2.1[3-9]*], LD=: critic_missing="$critic_missing ld")
903
		  [2.1[3-9]*|[2-9].[2-9]*], LD=: critic_missing="$critic_missing ld")
904
904
905
# We need the physical current working directory.  We cannot use the
905
# We need the physical current working directory.  We cannot use the
906
# "pwd -P" shell builtin since that's not portable.  Instead we try to
906
# "pwd -P" shell builtin since that's not portable.  Instead we try to

Return to bug 284393