1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-18 13:47:04 +00:00

fsdga disabled (obsolote)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1236 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2001-06-26 23:34:03 +00:00
parent 69cfcfe301
commit 9b7489da59
2 changed files with 8 additions and 7 deletions

6
configure vendored
View File

@ -1453,14 +1453,16 @@ fi
if [ $_dga = yes ]; then
_dga='#define HAVE_DGA'
_vosrc=$_vosrc' vo_dga.c vo_fsdga.c'
# _vosrc=$_vosrc' vo_dga.c vo_fsdga.c'
_vosrc=$_vosrc' vo_dga.c'
else
_dga='#undef HAVE_DGA'
fi
if [ $_dga2 = yes ]; then
_dga2='#define HAVE_DGA2'
_vosrc=$_vosrc' vo_dga.c vo_fsdga.c'
# _vosrc=$_vosrc' vo_dga.c vo_fsdga.c'
_vosrc=$_vosrc' vo_dga.c'
else
_dga2='#undef HAVE_DGA2'
fi

View File

@ -72,7 +72,6 @@ vo_functions_t* video_out_drivers[] =
&video_out_xmga,
#endif
#ifdef HAVE_MGA
&video_out_mga,
#endif
#ifdef HAVE_SYNCFB
@ -92,11 +91,14 @@ vo_functions_t* video_out_drivers[] =
#endif
#ifdef HAVE_DGA
&video_out_dga,
&video_out_fsdga,
// &video_out_fsdga,
#endif
#ifdef HAVE_SDL
&video_out_sdl,
#endif
#ifdef HAVE_GGI
&video_out_ggi,
#endif
#ifdef HAVE_FBDEV
&video_out_fbdev,
#endif
@ -110,9 +112,6 @@ vo_functions_t* video_out_drivers[] =
&video_out_odivx,
&video_out_pgm,
&video_out_md5,
#ifdef HAVE_GGI
&video_out_ggi,
#endif
NULL
};