changeset 28034:9519c786aafa

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 'macho32'. This is a workaround until FFmpeg code is fixed.
author gpoirier
date Wed, 03 Dec 2008 09:06:23 +0000
parents 5c6b67d9d4a0
children 170c4c26e75d
files configure
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Tue Dec 02 20:07:13 2008 +0000
+++ b/configure	Wed Dec 03 09:06:23 2008 +0000
@@ -2425,7 +2425,7 @@
 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