summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-05-17 21:33:49 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-05-17 21:33:49 +0000
commitf9b7e2b874a32ad147a3d7519e4327bde5837398 (patch)
treefcccab8d5fc16dc853a4124cd13f524457cb944a /configure
parenta8eaa5cf5ae1f38da105040e83a4ab7ca8597779 (diff)
downloadmpv-f9b7e2b874a32ad147a3d7519e4327bde5837398.tar.bz2
mpv-f9b7e2b874a32ad147a3d7519e4327bde5837398.tar.xz
Move the internal VIDIX check from a random place into the VIDIX section.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23334 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure69
1 files changed, 34 insertions, 35 deletions
diff --git a/configure b/configure
index 2ea18f9252..4a193ba3ed 100755
--- a/configure
+++ b/configure
@@ -2509,41 +2509,6 @@ if x86_32 && linux ; then
fi
fi
-if test "$_vidix_internal" = auto ; then
- _vidix_internal=no
- # should check for x86 systems supporting VIDIX (does QNX have VIDIX?)
- x86 && _vidix_internal=yes
-# this is broken currently, undefined references to inw, outw etc.
-# ppc && linux && _vidix_internal=yes
- alpha && linux && _vidix_internal=yes
- qnx && _vidix_internal=no
- beos && _vidix_internal=no
- darwin && _vidix_internal=no
-fi
-
-
-# checking for a working awk, I'm using mawk first, because it's fastest - atmos
-_awk=awk
-if test "$_vidix_internal" = yes ; then
-_awk_verc_fail=yes
-echocheck "awk"
-for _awk in mawk gawk nawk; do
- if ( $_awk 'BEGIN{testme();}function testme(){print"";}' ) >> "$TMPLOG" 2>&1; then
- _awk_verc_fail=no
- break
- fi
-done
-test "$_awk_verc_fail" = yes && _awk=no
-echores "$_awk"
-if test "$_awk_verc_fail" = yes; then
-echo "VIDIX needs awk, but no working implementation was found!"
-echo "Try the GNU version, which can be downloaded from:"
-echo "ftp://ftp.gnu.org/gnu/gawk/"
-echo "If you don't need VIDIX, you can use configure --disable-vidix instead."
-die "no awk"
-fi
-fi
-
######################
# MAIN TESTS GO HERE #
######################
@@ -7203,6 +7168,40 @@ linux && _def_linux='#define TARGET_LINUX 1'
# TODO cleanup the VIDIX stuff here
echocheck "VIDIX"
+if test "$_vidix_internal" = auto ; then
+ _vidix_internal=no
+ # should check for x86 systems supporting VIDIX (does QNX have VIDIX?)
+ x86 && _vidix_internal=yes
+# this is broken currently, undefined references to inw, outw etc.
+# ppc && linux && _vidix_internal=yes
+ alpha && linux && _vidix_internal=yes
+ qnx && _vidix_internal=no
+ beos && _vidix_internal=no
+ darwin && _vidix_internal=no
+fi
+
+# checking for a working awk, I'm using mawk first, because it's fastest - atmos
+_awk=awk
+if test "$_vidix_internal" = yes ; then
+_awk_verc_fail=yes
+echocheck "awk"
+for _awk in mawk gawk nawk; do
+ if ( $_awk 'BEGIN{testme();}function testme(){print"";}' ) >> "$TMPLOG" 2>&1; then
+ _awk_verc_fail=no
+ break
+ fi
+done
+test "$_awk_verc_fail" = yes && _awk=no
+echores "$_awk"
+if test "$_awk_verc_fail" = yes; then
+echo "VIDIX needs awk, but no working implementation was found!"
+echo "Try the GNU version, which can be downloaded from:"
+echo "ftp://ftp.gnu.org/gnu/gawk/"
+echo "If you don't need VIDIX, you can use configure --disable-vidix instead."
+die "no awk"
+fi
+fi
+
if test "$_vidix_internal" = yes; then
_res_comment="internal"
_vidix_external=no