summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorgpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-12-03 09:06:23 +0000
committergpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-12-03 09:06:23 +0000
commitfda903e4528494036348992ab1877cbf5e7bb1ad (patch)
treedbda85fe06de54d4203eca78828e8966fe8f953a /configure
parent518b38132d83fdcf25928c4ba5fceaa5e2f2e7cc (diff)
downloadmpv-fda903e4528494036348992ab1877cbf5e7bb1ad.tar.bz2
mpv-fda903e4528494036348992ab1877cbf5e7bb1ad.tar.xz
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index e9b276b4fe..9b1aaf116f 100755
--- a/configure
+++ b/configure
@@ -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