diff options
author | Måns Rullgård <mans@mansr.com> | 2008-12-12 17:17:41 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-12-12 17:17:41 +0000 |
commit | 9377b6ce1961836d91da423d23969d4ae19d8c38 (patch) | |
tree | 163b62476c678949b4bf2cbec29f0e050e0e8fc6 | |
parent | 217d8202536fb8d82bcb3fc88e95670e311b1e62 (diff) | |
download | ffmpeg-9377b6ce1961836d91da423d23969d4ae19d8c38.tar.gz |
configure: clean up .align detection
Originally committed as revision 16083 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1100,7 +1100,6 @@ ar="ar" nm="nm" ranlib="ranlib" strip="strip" -asmalign_pot="unknown" ln_s="ln -sf" objformat="elf" @@ -2083,10 +2082,7 @@ fi VHOOKCFLAGS="-fPIC" # Find out if the .align argument is a power of two or not. -if test $asmalign_pot = "unknown"; then - disable asmalign_pot - echo '__asm__ (".align 3");' | check_cc && enable asmalign_pot -fi +check_asm asmalign_pot '".align 3"' enabled_any $DECODER_LIST && enable decoders enabled_any $ENCODER_LIST && enable encoders |