comparison configure @ 4560:aa349785b8d3

made vesa support optional at compiletime
author rfelker
date Thu, 07 Feb 2002 02:21:39 +0000
parents 193cb24dca2b
children b3b2fc48b045
comparison
equal deleted inserted replaced
4559:5dc383bb1c82 4560:aa349785b8d3
137 --enable-new-input enable new input system [disable] 137 --enable-new-input enable new input system [disable]
138 --enable-joystick enable joystick support in new input [disable] 138 --enable-joystick enable joystick support in new input [disable]
139 Video: 139 Video:
140 --enable-gl build with OpenGL render support [autodetect] 140 --enable-gl build with OpenGL render support [autodetect]
141 --enable-dga[=n] build with DGA [n in {1, 2} ] support [autodetect] 141 --enable-dga[=n] build with DGA [n in {1, 2} ] support [autodetect]
142 --enable-vesa build with VESA support [autodetect]
142 --enable-svga build with SVGAlib support [autodetect] 143 --enable-svga build with SVGAlib support [autodetect]
143 --enable-sdl build with SDL render support [autodetect] 144 --enable-sdl build with SDL render support [autodetect]
144 --enable-aa build with AAlib render support [autodetect] 145 --enable-aa build with AAlib render support [autodetect]
145 --enable-ggi build with GGI render support [autodetect] 146 --enable-ggi build with GGI render support [autodetect]
146 --enable-dxr3 build with DXR3/H+ render support [autodetect] 147 --enable-dxr3 build with DXR3/H+ render support [autodetect]
717 _png=auto 718 _png=auto
718 _gl=auto 719 _gl=auto
719 _ggi=auto 720 _ggi=auto
720 _aa=auto 721 _aa=auto
721 _svga=auto 722 _svga=auto
723 _vesa=auto
722 _fbdev=auto 724 _fbdev=auto
723 _fbdev_nocopy=no 725 _fbdev_nocopy=no
724 _dvb=auto 726 _dvb=auto
725 _dxr3=auto 727 _dxr3=auto
726 _iconv=auto 728 _iconv=auto
797 --disable-ggi) _ggi=no ;; 799 --disable-ggi) _ggi=no ;;
798 --enable-aa) _aa=yes ;; 800 --enable-aa) _aa=yes ;;
799 --disable-aa) _aa=no ;; 801 --disable-aa) _aa=no ;;
800 --enable-svga) _svga=yes ;; 802 --enable-svga) _svga=yes ;;
801 --disable-svga) _svga=no ;; 803 --disable-svga) _svga=no ;;
804 --enable-vesa) _vesa=yes ;;
805 --disable-vesa) _vesa=no ;;
802 --enable-fbdev) _fbdev=yes ;; 806 --enable-fbdev) _fbdev=yes ;;
803 --enable-fbdev=nocopy) _fbdev=yes; _fbdev_nocopy=yes ;; 807 --enable-fbdev=nocopy) _fbdev=yes; _fbdev_nocopy=yes ;;
804 --disable-fbdev) _fbdev=no ;; 808 --disable-fbdev) _fbdev=no ;;
805 --enable-dvb) _dvb=yes ;; 809 --enable-dvb) _dvb=yes ;;
806 --disable-dvb) _dvb=no ;; 810 --disable-dvb) _dvb=no ;;
1919 else 1923 else
1920 _def_png='#undef HAVE_PNG' 1924 _def_png='#undef HAVE_PNG'
1921 fi 1925 fi
1922 1926
1923 1927
1928 if test "$_vesa" != no ; then
1924 echocheck "VESA support" 1929 echocheck "VESA support"
1925 if x86 && linux ; then 1930 if x86 && linux ; then
1926 _vosrc="$_vosrc vo_vesa.c vesa_lvo.c" 1931 _vosrc="$_vosrc vo_vesa.c vesa_lvo.c"
1927 _vomodules="vesa $_vomodules" 1932 _vomodules="vesa $_vomodules"
1928 echores "yes" 1933 echores "yes"
1929 else 1934 else
1930 echores "no (not supported on this OS/architecture)" 1935 echores "no (not supported on this OS/architecture)"
1936 fi
1931 fi 1937 fi
1932 1938
1933 1939
1934 ################# 1940 #################
1935 # VIDEO + AUDIO # 1941 # VIDEO + AUDIO #