aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-09-30 16:55:32 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-09-30 16:55:32 +0000
commit5baaf9adafe839c4ae9e7947c4d6c19329e469a7 (patch)
treeaba13b44222ec5f03911acdd14ccf9927e6fb927
parent391dbb54a640f6943bb879e8d301114caab83210 (diff)
downloadffmpeg-5baaf9adafe839c4ae9e7947c4d6c19329e469a7.tar.gz
Use a "b" constraint instead of ebx clobber to detect if EBX is available.
The test using clobber incorrectly indicates ebx to be available with the default compilers on OpenBSD 4.5 and Haiku. Originally committed as revision 20101 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 30f2084b13..94ceb533f2 100755
--- a/configure
+++ b/configure
@@ -2162,7 +2162,7 @@ elif enabled x86; then
EOF
# check whether EBX is available on x86
- check_asm ebx_available '"":::"%ebx"'
+ check_asm ebx_available '""::"b"(0)'
# check whether more than 10 operands are supported
check_cc <<EOF && enable ten_operands