diff options
author | atmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-01-15 12:30:52 +0000 |
---|---|---|
committer | atmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-01-15 12:30:52 +0000 |
commit | c3318629437162a07e32ebcb05b221f9352ebf22 (patch) | |
tree | 4bd0186473e798e557a9183224ef2d2772920fe7 | |
parent | b01493a577ff9c23d9e3bd25667e881fc18268d1 (diff) |
Fix xvidix for non-x11 systems (delayed due netloss)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4170 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libvo/video_out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c index a9f14d1965..bbf9ed1cb0 100644 --- a/libvo/video_out.c +++ b/libvo/video_out.c @@ -146,7 +146,7 @@ vo_functions_t* video_out_drivers[] = #ifdef HAVE_DIRECTFB &video_out_directfb, #endif -#ifdef CONFIG_VIDIX +#if defined(CONFIG_VIDIX) && defined(HAVE_X11) &video_out_xvidix, #endif NULL |