mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
* configure.in: Output as/ld as name if version is too old.
2003-04-01 Andreas Jaeger <aj@suse.de> * configure.in: Output as/ld as name if version is too old.
This commit is contained in:
parent
640f011927
commit
735881750c
@ -1,3 +1,7 @@
|
||||
2003-04-01 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* configure.in: Output as/ld as name if version is too old.
|
||||
|
||||
2003-03-31 Daniel Jacobowitz <drow@mvista.com>
|
||||
|
||||
* configure.in: Don't require an installed C library in the test
|
||||
|
4
configure
vendored
4
configure
vendored
@ -3401,7 +3401,7 @@ echo $ECHO_N "checking version of $AS... $ECHO_C" >&6
|
||||
echo "${ECHO_T}$ac_prog_version" >&6
|
||||
fi
|
||||
if test $ac_verc_fail = yes; then
|
||||
AS=: critic_missing=t
|
||||
AS=: critic_missing="$critic_missing as"
|
||||
fi
|
||||
|
||||
for ac_prog in $LD
|
||||
@ -3462,7 +3462,7 @@ echo $ECHO_N "checking version of $LD... $ECHO_C" >&6
|
||||
echo "${ECHO_T}$ac_prog_version" >&6
|
||||
fi
|
||||
if test $ac_verc_fail = yes; then
|
||||
LD=: critic_missing=t
|
||||
LD=: critic_missing="$critic_missing ld"
|
||||
fi
|
||||
|
||||
|
||||
|
@ -682,10 +682,10 @@ AC_SUBST(MIG)dnl Needed by sysdeps/mach/configure.in
|
||||
# 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=t)
|
||||
[2.1[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=t)
|
||||
[2.1[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
|
||||
|
Loading…
Reference in New Issue
Block a user