diff options
author | 2003-03-07 18:45:02 +0000 | |
---|---|---|
committer | 2003-03-07 18:45:02 +0000 | |
commit | 90eb7beed5f021b94df5827a9636ddeb09da8286 (patch) | |
tree | ff29b5a70060fdda3991d5972d2337f9e27da7b8 /configure | |
parent | 4db6d23cc2f55eddc4858d262de08e472edeee06 (diff) |
vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9547 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -218,6 +218,7 @@ Video output: --enable-directfb build with DirectFB support [autodetect] --enable-zr build with ZR360[56]7/ZR36060 support [autodetect] --enable-bl build with Blinkenlights support [disable] + --enable-tdfxvid build with tdfx vid support [disable] Audio output: --disable-ossaudio disable OSS sound support [autodetect] @@ -1044,6 +1045,7 @@ _termcap=auto _termios=auto _3dfx=no _tdfxfb=no +_tdfxvid=no _directfb=auto _zr=auto _bl=no @@ -1223,6 +1225,8 @@ for ac_option do --enable-3dfx) _3dfx=yes ;; --disable-3dfx) _3dfx=no ;; --enable-tdfxfb) _tdfxfb=yes ;; + --disable-tdfxvid) _tdfxvid=no ;; + --enable-tdfxvid) _tdfxvid=yes ;; --disable-tdfxfb) _tdfxfb=no ;; --enable-directfb) _directfb=yes ;; --disable-directfb) _directfb=no ;; @@ -2343,6 +2347,16 @@ else fi echores "$_tdfxfb" +echocheck "tdfxvid" +if test "$_tdfxvid" = yes ; then + _def_tdfxvid='#define HAVE_TDFX_VID 1' + _vosrc="$_vosrc vo_tdfx_vid.c" + _vomodules="tdfx_vid $_vomodules" +else + _def_tdfxvid='#undef HAVE_TDFX_VID' + _novomodules="tdfx_vid $_novomodules" +fi +echores "$_tdfxfb" echocheck "DirectFB headers presence" if test -z "$_inc_directfb" ; then @@ -5471,6 +5485,7 @@ $_def_directx $_def_ggi $_def_3dfx $_def_tdfxfb +$_def_tdfxvid $_def_directfb $_def_directfb_version $_def_zr |