summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-07 02:21:39 +0000
committerrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-07 02:21:39 +0000
commitb13e5950a687a76a8010177c9ca3d6f736dd61d3 (patch)
tree354e84ce65bb6379b501195d6d2c93b65fe3545f /configure
parentc1977c9ed570d3acc11d0e22aee277bc06150a6b (diff)
downloadmpv-b13e5950a687a76a8010177c9ca3d6f736dd61d3.tar.bz2
mpv-b13e5950a687a76a8010177c9ca3d6f736dd61d3.tar.xz
made vesa support optional at compiletime
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4561 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure b/configure
index 684011520d..78758b4ae9 100755
--- a/configure
+++ b/configure
@@ -139,6 +139,7 @@ Optional features:
Video:
--enable-gl build with OpenGL render support [autodetect]
--enable-dga[=n] build with DGA [n in {1, 2} ] support [autodetect]
+ --enable-vesa build with VESA support [autodetect]
--enable-svga build with SVGAlib support [autodetect]
--enable-sdl build with SDL render support [autodetect]
--enable-aa build with AAlib render support [autodetect]
@@ -719,6 +720,7 @@ _gl=auto
_ggi=auto
_aa=auto
_svga=auto
+_vesa=auto
_fbdev=auto
_fbdev_nocopy=no
_dvb=auto
@@ -799,6 +801,8 @@ for ac_option do
--disable-aa) _aa=no ;;
--enable-svga) _svga=yes ;;
--disable-svga) _svga=no ;;
+ --enable-vesa) _vesa=yes ;;
+ --disable-vesa) _vesa=no ;;
--enable-fbdev) _fbdev=yes ;;
--enable-fbdev=nocopy) _fbdev=yes; _fbdev_nocopy=yes ;;
--disable-fbdev) _fbdev=no ;;
@@ -1921,6 +1925,7 @@ else
fi
+if test "$_vesa" != no ; then
echocheck "VESA support"
if x86 && linux ; then
_vosrc="$_vosrc vo_vesa.c vesa_lvo.c"
@@ -1929,6 +1934,7 @@ if x86 && linux ; then
else
echores "no (not supported on this OS/architecture)"
fi
+fi
#################