diff options
author | Rich J Wareham <richwareham@users.sourceforge.net> | 2002-02-02 17:05:43 +0000 |
---|---|---|
committer | Rich J Wareham <richwareham@users.sourceforge.net> | 2002-02-02 17:05:43 +0000 |
commit | 465f37029a8633310c7f89a1917f6cc086dde7e6 (patch) | |
tree | f0c8dd31ff442cce0b946e3674e1008a1d808d33 /src/video_out/Makefile.am | |
parent | ef6e3362fcf60fe345573b883f086411ea0f70b4 (diff) | |
download | xine-lib-465f37029a8633310c7f89a1917f6cc086dde7e6.tar.gz xine-lib-465f37029a8633310c7f89a1917f6cc086dde7e6.tar.bz2 |
Added a new DirectFB output plugin (experimental)
CVS patchset: 1470
CVS date: 2002/02/02 17:05:43
Diffstat (limited to 'src/video_out/Makefile.am')
-rw-r--r-- | src/video_out/Makefile.am | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/video_out/Makefile.am b/src/video_out/Makefile.am index 7b45d752c..5fb10d21a 100644 --- a/src/video_out/Makefile.am +++ b/src/video_out/Makefile.am @@ -24,6 +24,10 @@ if HAVE_FB fb_module = xineplug_vo_out_fb.la endif +if HAVE_DIRECTFB +directfb_module = xineplug_vo_out_directfb.la +endif + if HAVE_SDL sdl_module = xineplug_vo_out_sdl.la endif @@ -36,7 +40,7 @@ endif # scheme "xineplug_vo_out_" # lib_LTLIBRARIES = $(xv_module) $(syncfb_module) $(xshm_module) $(aa_module) \ - $(fb_module) $(sdl_module) $(opengl_module) + $(fb_module) $(sdl_module) $(opengl_module) $(directfb_module) xineplug_vo_out_xv_la_SOURCES = deinterlace.c alphablend.c video_out_xv.c xineplug_vo_out_xv_la_LIBADD = $(XV_LIB) $(X_LIBS) -lXext @@ -63,6 +67,10 @@ xineplug_vo_out_fb_la_SOURCES = yuv2rgb.c yuv2rgb_mmx.c yuv2rgb_mlib.c \ alphablend.c video_out_fb.c xineplug_vo_out_fb_la_LDFLAGS = -avoid-version -module +xineplug_vo_out_directfb_la_SOURCES = alphablend.c video_out_directfb.c +xineplug_vo_out_directfb_la_LIBADD = $(DIRECTFB_LIBS) +xineplug_vo_out_directfb_la_LDFLAGS = -avoid-version -module + xineplug_vo_out_sdl_la_SOURCES = alphablend.c video_out_sdl.c xineplug_vo_out_sdl_la_LIBADD = $(SDL_LIBS) xineplug_vo_out_sdl_la_LDFLAGS = -avoid-version -module |