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.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28068 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
gpoirier 2008-12-03 09:06:23 +00:00
parent 518b38132d
commit fda903e452
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -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