0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

Rename gcc_checking variable to gcc_check.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19430 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-08-17 23:40:11 +00:00
parent f31dd94fb0
commit e8ebdfe224

7
configure vendored
View File

@ -462,6 +462,7 @@ _install=install
_ranlib=ranlib
_cc=cc
test "$CC" && _cc="$CC"
_gcc_check=yes
_as=auto
_runtime_cpudetection=no
_cross_compile=auto
@ -480,10 +481,10 @@ for ac_option do
_as=`echo $ac_option | cut -d '=' -f 2`
;;
--enable-gcc-checking)
_gcc_checking=yes
_gcc_check=yes
;;
--disable-gcc-checking)
_gcc_checking=no
_gcc_check=no
;;
--enable-static)
_ld_static='-static'
@ -673,7 +674,7 @@ else
fi
# Checking CC version...
if test "$_gcc_checking" != no ; then
if test "$_gcc_check" = yes ; then
# Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
if test "`basename $_cc`" = "icc" || test "`basename $_cc`" = "ecc"; then
echocheck "$_cc version"