diff options
author | James Stembridge <jstembridge@users.sourceforge.net> | 2003-02-21 01:16:32 +0000 |
---|---|---|
committer | James Stembridge <jstembridge@users.sourceforge.net> | 2003-02-21 01:16:32 +0000 |
commit | 85e8e2eabc73b02a7ba2b264c684452093e032fd (patch) | |
tree | ec313831dceb5f739ce7d507d0d0f63bdc4ee82f /src | |
parent | 18a755d4704006c1cc5ac84401678a3f8f671cde (diff) | |
download | xine-lib-85e8e2eabc73b02a7ba2b264c684452093e032fd.tar.gz xine-lib-85e8e2eabc73b02a7ba2b264c684452093e032fd.tar.bz2 |
Build vidix vo driver if we have X11 or linux framebuffer support
CVS patchset: 4224
CVS date: 2003/02/21 01:16:32
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/video_out/Makefile.am b/src/video_out/Makefile.am index dca42d6ca..82430d317 100644 --- a/src/video_out/Makefile.am +++ b/src/video_out/Makefile.am @@ -20,9 +20,6 @@ libdir = $(XINE_PLUGINDIR) if HAVE_X11 xshm_module = xineplug_vo_out_xshm.la syncfb_module = xineplug_vo_out_syncfb.la -if HAVE_VIDIX -vidix_module = xineplug_vo_out_vidix.la -endif if HAVE_XV xv_module = xineplug_vo_out_xv.la endif @@ -31,6 +28,10 @@ endif #endif endif +if HAVE_VIDIX +vidix_module = xineplug_vo_out_vidix.la +endif + if HAVE_SUNFB pgx64_module = xineplug_vo_out_pgx64.la endif |