summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2009-07-23 23:30:50 +0000
committerMåns Rullgård <mans@mansr.com>2009-07-23 23:30:50 +0000
commite45391bb3238798ff4ce6aba7c0ca8cfdd3c7263 (patch)
tree0968720631e769bd40e63ecb64204433748cfee7
parent78d01adaa7d665342e8638a0fb9d529a169f2c17 (diff)
configure: add some blank lines to improve readability
Originally committed as revision 19502 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure10
1 files changed, 10 insertions, 0 deletions
diff --git a/configure b/configure
index c31588ae06..b75e1361bf 100755
--- a/configure
+++ b/configure
@@ -2003,6 +2003,7 @@ EOF
od -A n -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
if enabled arm; then
+
check_ld <<EOF && enable vfp_args
__asm__ (".eabi_attribute 28, 1");
int main(void) { return 0; }
@@ -2017,10 +2018,14 @@ EOF
enabled armvfp && check_asm armvfp '"fadds s0, s0, s0"'
enabled iwmmxt && check_asm iwmmxt '"wunpckelub wr6, wr4"'
enabled neon && check_asm neon '"vadd.i16 q0, q0, q0"'
+
elif enabled mips; then
+
check_asm loongson '"dmult.g $1, $2, $3"'
enabled mmi && check_asm mmi '"lq $2, 0($2)"'
+
elif enabled ppc; then
+
check_asm dcbzl '"dcbzl 0, 1"'
check_asm ppc4xx '"maclhw r10, r11, r12"'
check_asm xform_asm '"lwzx 0, %y0" :: "Z"(*(int*)0)'
@@ -2047,10 +2052,14 @@ $inc_altivec_h
int main (void) { (vector int) {1}; return 0; }
EOF
fi
+
elif enabled sparc; then
+
enabled vis && check_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc &&
add_cflags -mcpu=ultrasparc -mtune=ultrasparc
+
elif enabled x86; then
+
# check whether EBP is available on x86
# As 'i' is stored on the stack, this program will crash
# if the base pointer is used to access it because the
@@ -2093,6 +2102,7 @@ EOF
*) append YASMFLAGS "-DPREFIX" ;;
esac
disabled yasm || { check_yasm "pabsw xmm0, xmm0" && enable yasm; }
+
fi
if check_func dlopen; then