comparison configure @ 30140:12a49e9ca30e

Finally add matrixview vo. Heavily cleaned up/fixed etc. by me, improvements are still possible though. Patch originally by Pigeon <pigeon at pigeond.net>
author reimar
date Sun, 03 Jan 2010 14:54:51 +0000
parents dc1d66a20ec2
children 0a92a14ced38
comparison
equal deleted inserted replaced
30139:47b031706571 30140:12a49e9ca30e
364 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome 364 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
365 --disable-vidix-pcidb disable VIDIX PCI device name database 365 --disable-vidix-pcidb disable VIDIX PCI device name database
366 --enable-dhahelper enable VIDIX dhahelper support 366 --enable-dhahelper enable VIDIX dhahelper support
367 --enable-svgalib_helper enable VIDIX svgalib_helper support 367 --enable-svgalib_helper enable VIDIX svgalib_helper support
368 --enable-gl enable OpenGL video output [autodetect] 368 --enable-gl enable OpenGL video output [autodetect]
369 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
369 --enable-dga2 enable DGA 2 support [autodetect] 370 --enable-dga2 enable DGA 2 support [autodetect]
370 --enable-dga1 enable DGA 1 support [autodetect] 371 --enable-dga1 enable DGA 1 support [autodetect]
371 --enable-vesa enable VESA video output [autodetect] 372 --enable-vesa enable VESA video output [autodetect]
372 --enable-svga enable SVGAlib video output [autodetect] 373 --enable-svga enable SVGAlib video output [autodetect]
373 --enable-sdl enable SDL video output [autodetect] 374 --enable-sdl enable SDL video output [autodetect]
587 _pnm=yes 588 _pnm=yes
588 _md5sum=yes 589 _md5sum=yes
589 _yuv4mpeg=yes 590 _yuv4mpeg=yes
590 _gif=auto 591 _gif=auto
591 _gl=auto 592 _gl=auto
593 matrixview=yes
592 _ggi=auto 594 _ggi=auto
593 _ggiwmh=auto 595 _ggiwmh=auto
594 _aa=auto 596 _aa=auto
595 _caca=auto 597 _caca=auto
596 _svga=auto 598 _svga=auto
949 --disable-yuv4mpeg) _yuv4mpeg=no ;; 951 --disable-yuv4mpeg) _yuv4mpeg=no ;;
950 --enable-gif) _gif=yes ;; 952 --enable-gif) _gif=yes ;;
951 --disable-gif) _gif=no ;; 953 --disable-gif) _gif=no ;;
952 --enable-gl) _gl=yes ;; 954 --enable-gl) _gl=yes ;;
953 --disable-gl) _gl=no ;; 955 --disable-gl) _gl=no ;;
956 --enable-matrixview) matrixview=yes ;;
957 --disable-matrixview) matrixview=no ;;
954 --enable-ggi) _ggi=yes ;; 958 --enable-ggi) _ggi=yes ;;
955 --disable-ggi) _ggi=no ;; 959 --disable-ggi) _ggi=no ;;
956 --enable-ggiwmh) _ggiwmh=yes ;; 960 --enable-ggiwmh) _ggiwmh=yes ;;
957 --disable-ggiwmh) _ggiwmh=no ;; 961 --disable-ggiwmh) _ggiwmh=no ;;
958 --enable-aa) _aa=yes ;; 962 --enable-aa) _aa=yes ;;
4601 def_mga='#undef CONFIG_MGA' 4605 def_mga='#undef CONFIG_MGA'
4602 _novomodules="mga $_novomodules" 4606 _novomodules="mga $_novomodules"
4603 fi 4607 fi
4604 echores "$_mga" 4608 echores "$_mga"
4605 4609
4610 echocheck "MatrixView"
4611 if test "$_gl" = no ; then
4612 matrixview=no
4613 fi
4614 if test "$matrixview" = yes ; then
4615 _vomodules="matrixview $_vomodules"
4616 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4617 else
4618 _novomodules="matrixview $_novomodules"
4619 def_matrixview='#undef CONFIG_MATRIXVIEW'
4620 fi
4621 echores "$matrixview"
4606 4622
4607 echocheck "xmga" 4623 echocheck "xmga"
4608 if test "$_xmga" = auto ; then 4624 if test "$_xmga" = auto ; then
4609 _xmga=no 4625 _xmga=no
4610 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes 4626 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
8354 GIF = $_gif 8370 GIF = $_gif
8355 GGI = $_ggi 8371 GGI = $_ggi
8356 GL = $_gl 8372 GL = $_gl
8357 GL_WIN32 = $_gl_win32 8373 GL_WIN32 = $_gl_win32
8358 GL_X11 = $_gl_x11 8374 GL_X11 = $_gl_x11
8375 MATRIXVIEW = $matrixview
8359 GUI = $_gui 8376 GUI = $_gui
8360 GUI_GTK = $_gui_gtk 8377 GUI_GTK = $_gui_gtk
8361 GUI_WIN32 = $_gui_win32 8378 GUI_WIN32 = $_gui_win32
8362 HAVE_POSIX_SELECT = $_posix_select 8379 HAVE_POSIX_SELECT = $_posix_select
8363 HAVE_SYS_MMAN_H = $_mman 8380 HAVE_SYS_MMAN_H = $_mman
8881 $def_gif_4 8898 $def_gif_4
8882 $def_gif_tvt_hack 8899 $def_gif_tvt_hack
8883 $def_gl 8900 $def_gl
8884 $def_gl_win32 8901 $def_gl_win32
8885 $def_gl_x11 8902 $def_gl_x11
8903 $def_matrixview
8886 $def_ivtv 8904 $def_ivtv
8887 $def_jpeg 8905 $def_jpeg
8888 $def_kva 8906 $def_kva
8889 $def_md5sum 8907 $def_md5sum
8890 $def_mga 8908 $def_mga