[Mplayer-cvslog] CVS: main configure,1.518,1.519

Atmosfear atmos4 at mplayerhq.hu
Tue Jul 9 01:29:05 CEST 2002


Update of /cvsroot/mplayer/main
In directory mail:/var/tmp.root/cvs-serv26590

Modified Files:
	configure 
Log Message:
Temp workaround for athlon-xp/athlon-mp/etc optimization clash, where xp was wrongly chosen (only real XP supports SSE)


Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.518
retrieving revision 1.519
diff -u -r1.518 -r1.519
--- configure	6 Jul 2002 15:20:10 -0000	1.518
+++ configure	8 Jul 2002 23:29:02 -0000	1.519
@@ -592,9 +592,13 @@
 	;;
     6) iproc=686
 	if test "$pmodel" -ge 7; then
-		proc=athlon-xp # or MP, but it doesn't really matter
+		proc=athlon-4
 	elif test "$pmodel" -ge 6; then
-		if test "$pstepping" -ge 2; then
+		# only Athlon XP supports ssem MP, Duron etc not
+		# but most of them are cpuid 666, so check if sse detected
+		# btw. there is also athlon-mp opt, but we need extended
+		# cpuid to detect if cpu is SMP capable -> athlon-mp ::atmos
+		if test "$_sse" = yes && test "$pstepping" -ge 2; then
 			proc=athlon-xp
 		else
 			proc=athlon-4




More information about the MPlayer-cvslog mailing list