[Mplayer-cvslog] CVS: main configure,1.57,1.58
Nick Kurshev
nickols_k at users.sourceforge.net
Mon Jun 4 11:38:20 CEST 2001
Update of /cvsroot/mplayer/main
In directory usw-pr-cvs1:/tmp/cvs-serv19967/main
Modified Files:
configure
Log Message:
Enable to avoid checking version of gcc. New tests of as
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.57
retrieving revision 1.58
diff -C2 -r1.57 -r1.58
*** configure 2001/06/04 08:07:57 1.57
--- configure 2001/06/04 09:38:18 1.58
***************
*** 112,115 ****
--- 112,117 ----
--enable-lirc enable LIRC (remote control) support
+ --disable-gcc-checking disable gcc version checking
+
--disable-select disable audio select() support ( for example required this
option ALSA or Vortex2 driver )
***************
*** 180,183 ****
--- 182,188 ----
_cc=`echo $ac_option | cut -d '=' -f 2`
;;
+ --disable-gcc-checking=*)
+ _skip_cc_check=yes
+ ;;
--with-x11libdir=*)
_x11libdir=-L`echo $ac_option | cut -d '=' -f 2`
***************
*** 193,196 ****
--- 198,202 ----
# Checking CC version...
+ if ! test -z "$_skip_cc_check"; then
echo "checking version of $CC""... $_cc"
cc_version=`$_cc -v 2>&1 | sed -n 's/^.*version \([aegcygnustp-]*[0-9.]*\).*$/\1/p'`
***************
*** 206,209 ****
--- 212,219 ----
exit
fi
+ fi
+ if test -z "$_skip_cc_check"; then
+ echo "YOU'VE SELECTED '--disable-gcc-checking'. PLEASE DON'T SEND US ANY BUGREPORTS!"
+ fi
# ---
***************
*** 749,752 ****
--- 759,766 ----
# Checking as compatibility...
+ cat > astest.S <<EOF
+ filds -2(%ebp)
+ EOF
+ as astest.S -o astest.o &> /dev/null || as_verc_fail=yes
if [ $_mmx = 'yes' ]; then
cat > astest.S <<EOF
***************
*** 758,761 ****
--- 772,781 ----
cat >> astest.S <<EOF
femms
+ EOF
+ as astest.S -o astest.o &> /dev/null || as_verc_fail=yes
+ fi
+ if [ $_3dnowex = 'yes' ]; then
+ cat >> astest.S <<EOF
+ pswapd %mm0, %mm0
EOF
as astest.S -o astest.o &> /dev/null || as_verc_fail=yes
_______________________________________________
Mplayer-cvslog mailing list
Mplayer-cvslog at lists.sourceforge.net
http://lists.sourceforge.net/lists/listinfo/mplayer-cvslog
More information about the MPlayer-cvslog
mailing list