summaryrefslogtreecommitdiff
path: root/src/video_out/Makefile.am
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-06-04 15:04:11 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-06-04 15:04:11 +0000
commitae617ad279bdb2e40ad9f2c8a17959248811bc75 (patch)
treecdd9f0cb74ab4f39126bc0e709454f2731dda7e7 /src/video_out/Makefile.am
parentc650633545f27f73ee43b2d9930504191788321f (diff)
downloadxine-lib-ae617ad279bdb2e40ad9f2c8a17959248811bc75.tar.gz
xine-lib-ae617ad279bdb2e40ad9f2c8a17959248811bc75.tar.bz2
video_out_xshm compiles (yuv2rgb conversion not working yet), video_out_xv bugfixes
CVS patchset: 121 CVS date: 2001/06/04 15:04:11
Diffstat (limited to 'src/video_out/Makefile.am')
-rw-r--r--src/video_out/Makefile.am9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/video_out/Makefile.am b/src/video_out/Makefile.am
index af1830e87..ba7769edd 100644
--- a/src/video_out/Makefile.am
+++ b/src/video_out/Makefile.am
@@ -5,8 +5,7 @@ CFLAGS = @GLOBAL_CFLAGS@ @X_CFLAGS@ -DXINE_COMPILE
libdir = $(XINE_PLUGINDIR)
if HAVE_X11
-## xshm and syncfb should be fixed first ;-)
-## xshm_module = xineplug_vo_out_xshm.la
+xshm_module = xineplug_vo_out_xshm.la
syncfb_module = xineplug_vo_out_syncfb.la
if HAVE_XV
xv_module = xineplug_vo_out_xv.la
@@ -19,14 +18,14 @@ endif
# All of xine video out plugins should be named like the
# scheme "xineplug_vo_out_"
#
-lib_LTLIBRARIES = $(xv_module) $(syncfb_module) ## $(xshm_module)
+lib_LTLIBRARIES = $(xv_module) $(syncfb_module) $(xshm_module)
xineplug_vo_out_xv_la_SOURCES = video_out_xv.c
xineplug_vo_out_xv_la_LIBADD = $(X_LIBS)
xineplug_vo_out_xv_la_LDFLAGS = -avoid-version -module
-## xineplug_vo_out_xshm_la_SOURCES = yuv2rgb.c yuv2rgb_mmx.c video_out_xshm.c
-## xineplug_vo_out_xshm_la_LDFLAGS = -avoid-version -module
+xineplug_vo_out_xshm_la_SOURCES = yuv2rgb.c yuv2rgb_mmx.c video_out_xshm.c
+xineplug_vo_out_xshm_la_LDFLAGS = -avoid-version -module
xineplug_vo_out_syncfb_la_SOURCES = video_out_syncfb.c
xineplug_vo_out_syncfb_la_LDFLAGS = -avoid-version -module