summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-17 23:40:11 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-17 23:40:11 +0000
commite8ebdfe224d9604850500b3f9cdb5e5fd297dc34 (patch)
tree9b7ec5530ba49ddba592857a8376c265893d57c5 /configure
parentf31dd94fb0ac75609b41fd7aa8ff8da84eb215f3 (diff)
downloadmpv-e8ebdfe224d9604850500b3f9cdb5e5fd297dc34.tar.bz2
mpv-e8ebdfe224d9604850500b3f9cdb5e5fd297dc34.tar.xz
Rename gcc_checking variable to gcc_check.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19430 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure b/configure
index 2569941e0c..8bac16284c 100755
--- a/configure
+++ b/configure
@@ -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"