[Mplayer-cvslog] CVS: main configure,1.794,1.795
Gabucino
gabucino at mplayerhq.hu
Fri Oct 24 09:45:14 CEST 2003
Update of /cvsroot/mplayer/main
In directory mail:/var/tmp.root/cvs-serv23430
Modified Files:
configure
Log Message:
fix issue when compiler is called 'cc', and --disable-gcc-checking was used
(it would force the compiler to be 'gcc')
Patch by Pierre Lombard <p_l at gmx.fr>
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.794
retrieving revision 1.795
diff -u -r1.794 -r1.795
--- configure 23 Oct 2003 22:09:26 -0000 1.794
+++ configure 24 Oct 2003 07:44:38 -0000 1.795
@@ -325,7 +325,7 @@
# 1st pass checking for vital options
_install=install
_ranlib=ranlib
-_cc=gcc
+_cc=cc
test "$CC" && _cc="$CC"
_as=auto
_runtime_cpudetection=no
@@ -485,7 +485,7 @@
# Checking CC version...
if test "$_skip_cc_check" != yes ; then
- for _cc in "$_cc" gcc-3.1 gcc3 gcc-3.0 cc ; do
+ for _cc in "$_cc" gcc gcc-3.3 gcc-3.2 gcc-3.1 gcc3 gcc-3.0 cc ; do
echocheck "$_cc version"
cc_name=`( $_cc -v ) 2>&1 | tail -1 | cut -d ' ' -f 1`
cc_version=`( $_cc -dumpversion ) 2>&1`
More information about the MPlayer-cvslog
mailing list