comparison configure @ 19137:d9656bb2ae0e

new vo driver for ivtv cards tv-out through internal h/w mpeg decoder
author ben
date Wed, 19 Jul 2006 22:02:09 +0000
parents 9b4f87f86bec
children 97ea9a6616df
comparison
equal deleted inserted replaced
19136:87f9eebbf712 19137:d9656bb2ae0e
316 --enable-ggi build with GGI render support [autodetect] 316 --enable-ggi build with GGI render support [autodetect]
317 --enable-ggiwmh build with GGI libggiwmh extension [autodetect] 317 --enable-ggiwmh build with GGI libggiwmh extension [autodetect]
318 --enable-directx build with DirectX support [autodetect] 318 --enable-directx build with DirectX support [autodetect]
319 --enable-dxr2 build with DXR2 render support [autodetect] 319 --enable-dxr2 build with DXR2 render support [autodetect]
320 --enable-dxr3 build with DXR3/H+ render support [autodetect] 320 --enable-dxr3 build with DXR3/H+ render support [autodetect]
321 --enable-ivtv build with IVTV TV-Out render support [autodetect]
321 --enable-dvb build with support for output via DVB-Card [autodetect] 322 --enable-dvb build with support for output via DVB-Card [autodetect]
322 --enable-dvbhead build with DVB support (HEAD version) [autodetect] 323 --enable-dvbhead build with DVB support (HEAD version) [autodetect]
323 --enable-mga build with mga_vid (for Matrox G200/G4x0/G550) support 324 --enable-mga build with mga_vid (for Matrox G200/G4x0/G550) support
324 (check for /dev/mga_vid) [autodetect] 325 (check for /dev/mga_vid) [autodetect]
325 --enable-xmga build with mga_vid X Window support 326 --enable-xmga build with mga_vid X Window support
1595 _fbdev=auto 1596 _fbdev=auto
1596 _dvb=auto 1597 _dvb=auto
1597 _dvbhead=auto 1598 _dvbhead=auto
1598 _dxr2=auto 1599 _dxr2=auto
1599 _dxr3=auto 1600 _dxr3=auto
1601 _ivtv=auto
1600 _iconv=auto 1602 _iconv=auto
1601 _langinfo=auto 1603 _langinfo=auto
1602 _rtc=auto 1604 _rtc=auto
1603 _ossaudio=auto 1605 _ossaudio=auto
1604 _arts=auto 1606 _arts=auto
1782 --disable-dvbhead) _dvbhead=no ;; 1784 --disable-dvbhead) _dvbhead=no ;;
1783 --enable-dxr2) _dxr2=yes ;; 1785 --enable-dxr2) _dxr2=yes ;;
1784 --disable-dxr2) _dxr2=no ;; 1786 --disable-dxr2) _dxr2=no ;;
1785 --enable-dxr3) _dxr3=yes ;; 1787 --enable-dxr3) _dxr3=yes ;;
1786 --disable-dxr3) _dxr3=no ;; 1788 --disable-dxr3) _dxr3=no ;;
1789 --enable-ivtv) _ivtv=yes ;;
1790 --disable-ivtv) _ivtv=no ;;
1787 --enable-iconv) _iconv=yes ;; 1791 --enable-iconv) _iconv=yes ;;
1788 --disable-iconv) _iconv=no ;; 1792 --disable-iconv) _iconv=no ;;
1789 --enable-langinfo) _langinfo=yes ;; 1793 --enable-langinfo) _langinfo=yes ;;
1790 --disable-langinfo) _langinfo=no ;; 1794 --disable-langinfo) _langinfo=no ;;
1791 --enable-rtc) _rtc=yes ;; 1795 --enable-rtc) _rtc=yes ;;
4695 _novomodules="dxr3 $_novomodules" 4699 _novomodules="dxr3 $_novomodules"
4696 fi 4700 fi
4697 echores "$_dxr3" 4701 echores "$_dxr3"
4698 4702
4699 4703
4704 echocheck "IVTV TV-Out"
4705 if test "$_ivtv" = auto ; then
4706 cat > $TMPC << EOF
4707 #include <stdlib.h>
4708 #include <inttypes.h>
4709 #include <linux/types.h>
4710 #include <linux/videodev2.h>
4711 #include <linux/ivtv.h>
4712 int main(void) { return 0; }
4713 EOF
4714 _ivtv=no
4715 cc_check && _ivtv=yes
4716 fi
4717 if test "$_ivtv" = yes ; then
4718 _def_ivtv='#define HAVE_IVTV 1'
4719 _vosrc="$_vosrc vo_ivtv.c"
4720 _vomodules="ivtv $_vomodules"
4721 else
4722 _def_ivtv='#undef HAVE_IVTV'
4723 _novomodules="ivtv $_novomodules"
4724 fi
4725 echores "$_ivtv"
4726
4727
4700 echocheck "libfame" 4728 echocheck "libfame"
4701 if test "$_libfame" = auto ; then 4729 if test "$_libfame" = auto ; then
4702 _libfame=no 4730 _libfame=no
4703 test "$_dxr2" = yes && _libfame=auto 4731 test "$_dxr2" = yes && _libfame=auto
4704 test "$_dxr3" = yes && _libfame=auto 4732 test "$_dxr3" = yes && _libfame=auto
8205 $_def_xmga 8233 $_def_xmga
8206 $_def_syncfb 8234 $_def_syncfb
8207 $_def_fbdev 8235 $_def_fbdev
8208 $_def_dxr2 8236 $_def_dxr2
8209 $_def_dxr3 8237 $_def_dxr3
8238 $_def_ivtv
8210 $_def_dvb 8239 $_def_dvb
8211 $_def_dvb_in 8240 $_def_dvb_in
8212 $_def_svga 8241 $_def_svga
8213 $_def_vesa 8242 $_def_vesa
8214 $_def_xdpms 8243 $_def_xdpms