summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-06-15 16:00:51 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-06-15 16:00:51 +0000
commit02134bc46b0f46fcb839eb48cf404e05d59ada20 (patch)
tree6d444ad67578e39e0def687aa1a7e075a896112c
parent6be0c383033c9e6750cd0dc9cf10f3afd69c6131 (diff)
downloadmpv-02134bc46b0f46fcb839eb48cf404e05d59ada20.tar.bz2
mpv-02134bc46b0f46fcb839eb48cf404e05d59ada20.tar.xz
cosmetics: Group internal codec library tests together.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27074 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure42
1 files changed, 21 insertions, 21 deletions
diff --git a/configure b/configure
index 1e9310aa8d..4eed6b0b21 100755
--- a/configure
+++ b/configure
@@ -5957,6 +5957,27 @@ else
fi
echores "$_liba52"
+echocheck "internal libmpeg2 support"
+if test "$_libmpeg2" = auto ; then
+ _libmpeg2=yes
+ if alpha && test cc_vendor=gnu; then
+ case $cc_version in
+ 2*|3.0*|3.1*) # cannot compile MVI instructions
+ _libmpeg2=no
+ _res_comment="broken gcc"
+ ;;
+ esac
+ fi
+fi
+if test "$_libmpeg2" = yes ; then
+ _def_libmpeg2='#define USE_LIBMPEG2 1'
+ _codecmodules="libmpeg2 $_codecmodules"
+else
+ _def_libmpeg2='#undef USE_LIBMPEG2'
+ _nocodecmodules="libmpeg2 $_nocodecmodules"
+fi
+echores "$_libmpeg2"
+
echocheck "libdca support"
if test "$_libdca" = auto ; then
_libdca=no
@@ -5979,27 +6000,6 @@ else
fi
echores "$_libdca"
-echocheck "internal libmpeg2 support"
-if test "$_libmpeg2" = auto ; then
- _libmpeg2=yes
- if alpha && test cc_vendor=gnu; then
- case $cc_version in
- 2*|3.0*|3.1*) # cannot compile MVI instructions
- _libmpeg2=no
- _res_comment="broken gcc"
- ;;
- esac
- fi
-fi
-if test "$_libmpeg2" = yes ; then
- _def_libmpeg2='#define USE_LIBMPEG2 1'
- _codecmodules="libmpeg2 $_codecmodules"
-else
- _def_libmpeg2='#undef USE_LIBMPEG2'
- _nocodecmodules="libmpeg2 $_nocodecmodules"
-fi
-echores "$_libmpeg2"
-
echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
if test "$_musepack" = auto ; then
_musepack=no