[MPlayer-cvslog] r28068 - trunk/configure

gpoirier subversion at mplayerhq.hu
Wed Dec 3 10:06:23 CET 2008


Author: gpoirier
Date: Wed Dec  3 10:06:23 2008
New Revision: 28068

Log:
Pass "-f macho" to yasm when enabling YASM support on a 32-bits machine as
libavcodec/i386/x86inc.asm checks that __OUTPUT_FORMAT__ is 'macho' in
32-bits mode, not 'macho'.
This is a workaround until FFmpeg code is fixed.


Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Wed Dec  3 10:06:23 2008
@@ -2425,7 +2425,7 @@ echores $_asmalign_pot
 echocheck "yasm"
 if test -z "$YASMFLAGS" ; then
   if darwin ; then
-    x86_64 && objformat="macho64" || objformat="macho32"
+    x86_64 && objformat="macho64" || objformat="macho"
   elif win32 ; then
     objformat="win32"
   else 



More information about the MPlayer-cvslog mailing list