summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-02-11 16:24:15 +0000
committerMåns Rullgård <mans@mansr.com>2007-02-11 16:24:15 +0000
commitf70f03f6237530de51e6bbe5c10d2ed70ed74fab (patch)
tree5960a84c724a00291d865a89ea6833474dfa7684
parentf6f69c304e0c391ed2c4d4305bff3039e6f008d3 (diff)
finish feature calculations before printing result and creating files
Originally committed as revision 7932 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure20
1 files changed, 10 insertions, 10 deletions
diff --git a/configure b/configure
index dd1ce1f5d2..5e1d4a03d0 100755
--- a/configure
+++ b/configure
@@ -1824,6 +1824,16 @@ if test $asmalign_pot = "unknown"; then
echo 'asm (".align 3");' | check_cc && asmalign_pot="yes"
fi
+enabled_any $ENCODER_LIST && enable encoders
+enabled_any $DECODER_LIST && enable decoders
+enabled_any $MUXER_LIST && enable muxers
+enabled_any $DEMUXER_LIST && enable demuxers
+
+enabled_any pthreads beosthreads os2threads w32threads && enable threads
+
+check_deps $CONFIG_LIST $HAVE_LIST $DECODER_LIST $ENCODER_LIST $PARSER_LIST \
+ $DEMUXER_LIST $MUXER_LIST
+
echo "install prefix $PREFIX"
echo "source path $source_path"
echo "C compiler $cc"
@@ -2016,16 +2026,6 @@ fi
echo "LIB_INSTALL_EXTRA_CMD=${LIB_INSTALL_EXTRA_CMD}" >> config.mak
echo "EXTRALIBS=$extralibs" >> config.mak
-enabled_any $ENCODER_LIST && enable encoders
-enabled_any $DECODER_LIST && enable decoders
-enabled_any $MUXER_LIST && enable muxers
-enabled_any $DEMUXER_LIST && enable demuxers
-
-enabled_any pthreads beosthreads os2threads w32threads && enable threads
-
-check_deps $CONFIG_LIST $HAVE_LIST $DECODER_LIST $ENCODER_LIST $PARSER_LIST \
- $DEMUXER_LIST $MUXER_LIST
-
print_config HAVE_ $TMPH config.mak $HAVE_LIST
print_config CONFIG_ $TMPH config.mak $CONFIG_LIST
print_config TARGET_ $TMPH config.mak $TARGET_LIST