[xiph-commits] r11445 - trunk/theora

giles at svn.xiph.org giles at svn.xiph.org
Sat May 27 16:45:01 PDT 2006


Author: giles
Date: 2006-05-27 16:45:00 -0700 (Sat, 27 May 2006)
New Revision: 11445

Modified:
   trunk/theora/configure.ac
Log:
Disable asm by default on Apple platforms. The gas included with the MacOS X developer Tools is based on version 1.38 and lacks support for common pseudo ops like .balign and .rept, required by the gcc versions of our inline asm.
It would of course be better to check this directly.


Modified: trunk/theora/configure.ac
===================================================================
--- trunk/theora/configure.ac	2006-05-27 23:35:57 UTC (rev 11444)
+++ trunk/theora/configure.ac	2006-05-27 23:45:00 UTC (rev 11445)
@@ -112,8 +112,10 @@
   cpu_optimization="no optimization for your platform, please send a patch"
   case $target_cpu in
 	i[[3456]]86)
-		cpu_x86_32=yes 
-		cpu_optimization="32 bit x86"
+		if test ! "x$target_vendor" = "xapple"; then
+		  cpu_x86_32=yes 
+		  cpu_optimization="32 bit x86"
+		fi
     	;;
 	x86_64)
 		cpu_x86_64=yes



More information about the commits mailing list