[Mplayer-cvslog] CVS: main configure,1.233,1.234

Alex Beregszaszi alex at mplayer.dev.hu
Sun Nov 11 05:26:57 CET 2001


Update of /cvsroot/mplayer/main
In directory mplayer:/var/tmp.root/cvs-serv18175

Modified Files:
	configure 
Log Message:
added --enable-tv and --disable-tv (default is disabled)

Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.233
retrieving revision 1.234
diff -u -r1.233 -r1.234
--- configure	11 Nov 2001 01:45:01 -0000	1.233
+++ configure	11 Nov 2001 04:26:54 -0000	1.234
@@ -168,6 +168,7 @@
   --enable-xmmp          use XMMP audio drivers [disable]
   --enable-lirc          enable LIRC (remote control) support [disable]
   --enable-gui           enable GUI [disable]
+  --enable-tv            enable TV Interface (tv/dvb grabbers) [disable]
   --disable-win32        disable Win32 DLL support [autodetect]
   --disable-dshow        disable DirectShow support (if no C++ compiler and
                          libs are available or find the dshow codecs slower 
@@ -612,6 +613,8 @@
 
 _gui=no
 
+_tv=no
+
 _alsa=yes
 _esd=yes
 _mad=yes
@@ -1414,6 +1417,9 @@
   --enable-gui)
   	_gui=yes
 	;;
+  --enable-tv)
+	_tv=yes
+	;;
   --enable-streaming)
   	_streaming=yes
 	;;
@@ -1536,6 +1542,9 @@
   --disable-gui)
   	_gui=no
 	;;
+  --disable-tv)
+	_tv=no
+	;;
   --disable-alsa)
 	_alsaver='notfound'
         _alsa=no
@@ -1855,6 +1864,7 @@
 echo "Checking for libffmpeg.so ... $_libavcodec_so"
 echo "Checking for divx4linux ... $_divx4linux"
 echo "Checking for fastmemcpy ... $_fastmemcpy"
+echo "Checking for TV Interface ... $_tv"
 echo "Extra libs : $_extralibdir"
 echo "Extra headers : $_extraincdir"
 # write conf files.
@@ -2448,6 +2458,12 @@
  _have_dvb='#undef HAVE_DVB'
 fi
 
+if test "$_tv" = yes ; then
+ _tv='#define USE_TV'
+else
+ _tv='#undef USE_TV'
+fi
+
 if test "$_dxr3" = yes ; then
  _dxr3='#define HAVE_DXR3'
  _dxr3lib='-ldxr3'
@@ -2695,6 +2711,9 @@
 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
 #undef FAST_OSD
 #undef FAST_OSD_TABLE
+
+/* Enable TV Interface support */
+$_tv
 
 /* Define if your processor stores words with the most significant
    byte first (like Motorola and SPARC, unlike Intel and VAX).  */




More information about the MPlayer-cvslog mailing list