summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 4e4c4988a3..a0bc432c10 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -70,7 +70,9 @@ extern vo_functions_t video_out_png;
extern vo_functions_t video_out_ggi;
extern vo_functions_t video_out_aa;
extern vo_functions_t video_out_mpegpes;
-
+#ifdef TARGET_LINUX
+extern vo_functions_t video_out_vesa;
+#endif
vo_functions_t* video_out_drivers[] =
{
#ifdef HAVE_XMGA
@@ -126,6 +128,9 @@ vo_functions_t* video_out_drivers[] =
&video_out_pgm,
&video_out_md5,
&video_out_mpegpes,
+#if defined( ARCH_X86 ) && defined( TARGET_LINUX )
+ &video_out_vesa,
+#endif
NULL
};