[Mplayer-cvslog] CVS: main configure,1.63,1.64

GEREOFFY arpi_esp at users.sourceforge.net
Mon Jun 4 22:12:43 CEST 2001


Update of /cvsroot/mplayer/main
In directory usw-pr-cvs1:/tmp/cvs-serv18009

Modified Files:
	configure 
Log Message:
various changes, second filds test disabled, alsa tests fixed

Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.63
retrieving revision 1.64
diff -C2 -r1.63 -r1.64
*** configure	2001/06/04 19:45:07	1.63
--- configure	2001/06/04 20:12:41	1.64
***************
*** 181,184 ****
--- 181,185 ----
  
  _skip_cc_check=no
+ _skip_as_check=no
  _sdlconfig='sdl-config'
  
***************
*** 192,195 ****
--- 193,199 ----
          _skip_cc_check=yes
  	;;
+   --disable-as-checking)
+         _skip_as_check=yes
+ 	;;
    --with-x11libdir=*)
          _x11libdir=-L`echo $ac_option | cut -d '=' -f 2`
***************
*** 221,227 ****
  echo "Please downgrade(upgrade) gcc compiler to gcc-2.95.2+ or gcc-3.0+ version"
  exit
- fi
  fi
! if test "$_skip_cc_check" = "yes"; then
  echo "YOU'VE SELECTED '--disable-gcc-checking'. PLEASE DON'T SEND US ANY BUGREPORTS!"
  fi
--- 225,230 ----
  echo "Please downgrade(upgrade) gcc compiler to gcc-2.95.2+ or gcc-3.0+ version"
  exit
  fi
! else
  echo "YOU'VE SELECTED '--disable-gcc-checking'. PLEASE DON'T SEND US ANY BUGREPORTS!"
  fi
***************
*** 520,523 ****
--- 523,528 ----
  as libac3/downmix/downmix_i386.S -o $TMPO &> /dev/null && _binutils=yes
  
+ # echo binutils: $_binutils
+ 
  # ----------- Check X11 and related libs (GL, Xxf86vm, Xv, DGA) --------------
  
***************
*** 579,587 ****
  EOF
  
! _alsaver='not found'
  $_cc -o $TMPO -lasound $TMPC &> /dev/null || _alsa=no
  [ $_alsa == "yes" ] && $TMPO && { _alsaver='0.5.x'; }
  
! if [ $_alsaver == 'not found' ]; then
  cat > $TMPC << EOF
  #include <sys/asoundlib.h>
--- 584,593 ----
  EOF
  
! _alsaver='notfound'
  $_cc -o $TMPO -lasound $TMPC &> /dev/null || _alsa=no
+ 
  [ $_alsa == "yes" ] && $TMPO && { _alsaver='0.5.x'; }
  
! if [ $_alsaver = 'notfound' ]; then
  cat > $TMPC << EOF
  #include <sys/asoundlib.h>
***************
*** 590,594 ****
  EOF
  
! _alsaver='not found'
  $_cc -o $TMPO -lasound $TMPC &> /dev/null || _alsa=no
  [ $_alsa == "yes" ] && $TMPO && { _alsaver='0.9.x'; }
--- 596,600 ----
  EOF
  
! _alsaver='notfound'
  $_cc -o $TMPO -lasound $TMPC &> /dev/null || _alsa=no
  [ $_alsa == "yes" ] && $TMPO && { _alsaver='0.9.x'; }
***************
*** 767,771 ****
  	;;
    --disable-alsa)
! 	_alsaver='not found'
          _alsa=no
  	;;
--- 773,777 ----
  	;;
    --disable-alsa)
! 	_alsaver='notfound'
          _alsa=no
  	;;
***************
*** 800,807 ****
  # Checking as compatibility...
  echo -n "Checking assembler (as) ... "
! 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
--- 806,816 ----
  # Checking as compatibility...
  echo -n "Checking assembler (as) ... "
! 
! ### this test disabled, see _binutils test above!  --A'rpi
! # 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
***************
*** 810,813 ****
--- 819,823 ----
  as astest.S -o astest.o &> /dev/null || as_verc_fail=yes
  fi
+ 
  if [ $_3dnow = 'yes' ]; then
  cat >> astest.S <<EOF
***************
*** 816,819 ****
--- 826,830 ----
  as astest.S -o astest.o &> /dev/null || as_verc_fail=yes
  fi
+ 
  if [ $_3dnowex = 'yes' ]; then
  cat >> astest.S <<EOF
***************
*** 822,825 ****
--- 833,837 ----
  as astest.S -o astest.o &> /dev/null || as_verc_fail=yes
  fi
+ 
  if [ $_mmx2 = 'yes' ]; then
  cat >> astest.S <<EOF
***************
*** 828,831 ****
--- 840,844 ----
  as astest.S -o astest.o &> /dev/null || as_verc_fail=yes
  fi
+ 
  if [ $_sse = 'yes' ]; then
  cat >> astest.S <<EOF
***************
*** 835,838 ****
--- 848,852 ----
  rm -f astest.S astest.o
  fi
+ 
  if test "$as_verc_fail" != "yes"; then
    echo "ok"
***************
*** 1166,1170 ****
  fi
  
! if [ "$_alsaver" != "not found" ]; then
  [ $_alsaver == '0.5.x' ] && { _aosrc="$_aosrc ao_alsa5.c"; $_alsa='#define HAVE_ALSA5'; } 
  # [ $_alsaver == '0.9.x' ] && { _aosrc="$_aosrc ao_alsa9.c"; }
--- 1180,1184 ----
  fi
  
! if [ "$_alsaver" != "notfound" ]; then
  [ $_alsaver == '0.5.x' ] && { _aosrc="$_aosrc ao_alsa5.c"; $_alsa='#define HAVE_ALSA5'; } 
  # [ $_alsaver == '0.9.x' ] && { _aosrc="$_aosrc ao_alsa9.c"; }
***************
*** 1346,1350 ****
  
  !!! Warning! fallback to slow downmix.c due the old binutils.
! !!! Upgrade for better audio decoding performance.
  
  EOF
--- 1360,1364 ----
  
  !!! Warning! fallback to slow downmix.c due the old binutils.
! !!! Upgrade it for better AC3 audio decoding performance!
  
  EOF


_______________________________________________
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