diff options
author | Diego Biurrun <diego@biurrun.de> | 2017-03-24 20:24:08 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-03-24 20:24:08 +0100 |
commit | d6390090c4dbd766b77353553d9cb4fb4fb41ebd (patch) | |
tree | 41b9f463a41e7ee6b9a9eb6eba03fb022bca360b /configure | |
parent | 083ea8768121ee800893e124b08483011b798919 (diff) | |
download | ffmpeg-d6390090c4dbd766b77353553d9cb4fb4fb41ebd.tar.gz |
configure: Skip check for inline assembly capabilities when explicitly disabled
Otherwise inline assembly may get enabled when disabled on the command line.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4251,7 +4251,7 @@ EOF sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }') extern_prefix=${sym%%ff_extern*} -check_inline_asm inline_asm '"" ::' +! disabled inline_asm && check_inline_asm inline_asm '"" ::' _restrict= for restrict_keyword in restrict __restrict__ __restrict; do |