summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-01 09:23:04 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-01 09:23:04 +0000
commit92c2413042d9f182d51b9bff9759921ca18c75c5 (patch)
treee1fbaa23496e224a616c40b3a35579679413f186 /configure
parent483453ff8bdd3a02f56b65ee5601da8a9544d49c (diff)
downloadmpv-92c2413042d9f182d51b9bff9759921ca18c75c5.tar.bz2
mpv-92c2413042d9f182d51b9bff9759921ca18c75c5.tar.xz
Enable teletext for V4Lv1.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23986 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure9
1 files changed, 5 insertions, 4 deletions
diff --git a/configure b/configure
index 01a6ac9886..7f6f272d9b 100755
--- a/configure
+++ b/configure
@@ -6740,11 +6740,12 @@ echores "$_tv_v4l2"
echocheck "TV teletext interface"
if test "$_tv_teletext" = auto ; then
- if test "$_tv_v4l2" = yes && test "$_freetype" = yes ; then
- _tv_teletext=yes
- else
_tv_teletext=no
- fi
+ if "$_freetype" = yes ; then
+ if test "$_tv_v4l2" = yes || test "$_v4l" = yes ; then
+ _tv_teletext=yes
+ fi
+ fi
fi
if test "$_tv_teletext" = yes ; then
_def_tv_teletext='#define HAVE_TV_TELETEXT 1'