Remove the check for specific gcc versions, because:

- It was never updated to check for more recent gcc versions and
- using specific gcc versions is likely not a good idea in the first place,
  it effectively changes the user's choice of default compiler.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24739 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-10-08 08:40:47 +00:00
parent acc36f5a97
commit 213c4ad824
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -1411,7 +1411,7 @@ if test "$_gcc_check" = yes ; then
esac
echores "$cc_version"
else
for _cc in "$_cc" gcc gcc-3.4 gcc-3.3 gcc-3.2 gcc-3.1 gcc3 gcc-3.0 cc ; do
for _cc in "$_cc" gcc cc ; do
echocheck "$_cc version"
cc_vendor=gnu
cc_name=`$_cc -v 2>&1 | _tail 1 | cut -d ' ' -f 1`