summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-27 09:30:39 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-27 09:30:39 +0000
commita881f35f1a556609ec7cc21671777d3a2e5c4444 (patch)
tree634b623e25e33f28202184124b81c03d663deda0 /configure
parent3e2db07a32eebf6159bd40f661ed98365e9a3516 (diff)
downloadmpv-a881f35f1a556609ec7cc21671777d3a2e5c4444.tar.bz2
mpv-a881f35f1a556609ec7cc21671777d3a2e5c4444.tar.xz
Rename *v4l variable to *v4l1.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19192 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure30
1 files changed, 15 insertions, 15 deletions
diff --git a/configure b/configure
index 634cafc133..cb5a425920 100755
--- a/configure
+++ b/configure
@@ -217,7 +217,7 @@ Optional features:
--disable-vm disable support X video mode extensions [autodetect]
--disable-xf86keysym disable support for 'multimedia' keys [autodetect]
--disable-tv disable TV Interface (tv/dvb grabbers) [enable]
- --disable-tv-v4l disable Video4Linux TV Interface support [autodetect]
+ --disable-tv-v4l1 disable Video4Linux TV Interface support [autodetect]
--disable-tv-v4l2 disable Video4Linux2 TV Interface support [autodetect]
--disable-tv-bsdbt848 disable BSD BT848 Interface support [autodetect]
--disable-pvr disable Video4Linux2/IVTV PVR support [autodetect]
@@ -1649,7 +1649,7 @@ _unrarlib=yes
_win32=auto
_select=yes
_tv=yes
-_tv_v4l=auto
+_tv_v4l1=auto
_tv_v4l2=auto
_tv_bsdbt848=auto
_pvr=auto
@@ -1884,8 +1884,8 @@ for ac_option do
--disable-tv) _tv=no ;;
--enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
--disable-tv-bsdbt848) _tv_bsdbt848=no ;;
- --enable-tv-v4l) _tv_v4l=yes ;;
- --disable-tv-v4l) _tv_v4l=no ;;
+ --enable-tv-v4l1) _tv_v4l1=yes ;;
+ --disable-tv-v4l1) _tv_v4l1=no ;;
--enable-tv-v4l2) _tv_v4l2=yes ;;
--disable-tv-v4l2) _tv_v4l2=no ;;
--enable-pvr) _pvr=yes ;;
@@ -2966,7 +2966,7 @@ if test "$_pthreads" = yes ; then
else
_res_comment="v4l, vo_gl, ao_alsa, ao_nas, ao_macosx, win32 loader disabled"
_def_pthreads='#undef HAVE_PTHREADS'
- _nas=no ; _tv_v4l=no ; _macosx=no
+ _nas=no ; _tv_v4l1=no ; _macosx=no
if not mingw32 ; then
_win32=no
fi
@@ -6683,25 +6683,25 @@ fi #if bsd
echocheck "Video 4 Linux TV interface"
-if test "$_tv_v4l" = auto ; then
- _tv_v4l=no
+if test "$_tv_v4l1" = auto ; then
+ _tv_v4l1=no
if test "$_tv" = yes && linux ; then
cat > $TMPC <<EOF
#include <stdlib.h>
#include <linux/videodev.h>
int main(void) { return 0; }
EOF
- cc_check && _tv_v4l=yes
+ cc_check && _tv_v4l1=yes
fi
fi
-if test "$_tv_v4l" = yes ; then
- _def_tv_v4l='#define HAVE_TV_V4L 1'
+if test "$_tv_v4l1" = yes ; then
+ _def_tv_v4l1='#define HAVE_TV_V4L1 1'
_inputmodules="tv-v4l $_inputmodules"
else
- _noinputmodules="tv-v4l $_noinputmodules"
+ _noinputmodules="tv-v4l1 $_noinputmodules"
_def_tv_v4l='#undef HAVE_TV_V4L'
fi
-echores "$_tv_v4l"
+echores "$_tv_v4l1"
echocheck "Video 4 Linux 2 TV interface"
@@ -7436,7 +7436,7 @@ TERMCAP_LIB = $_ld_termcap
LIRC_LIB = $_ld_lirc
LIRCC_LIB = $_ld_lircc
TV = $_tv
-TV_V4L = $_tv_v4l
+TV_V4L1 = $_tv_v4l1
TV_V4L2 = $_tv_v4l2
TV_BSDBT848 = $_tv_bsdbt848
PVR = $_pvr
@@ -7963,8 +7963,8 @@ $_def_nas
/* Enable TV Interface support */
$_def_tv
-/* Enable Video 4 Linux TV interface support */
-$_def_tv_v4l
+/* Enable Video 4 Linux 1 TV interface support */
+$_def_tv_v4l1
/* Enable Video 4 Linux 2 TV interface support */
$_def_tv_v4l2