summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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'