diff options
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 4066bf549..b11d808c8 100644 --- a/src/video_out/Makefile.am +++ b/src/video_out/Makefile.am @@ -21,6 +21,9 @@ endif if HAVE_OPENGL opengl_module = xineplug_vo_out_opengl.la endif +if HAVE_SUNFB +pgx64_module = xineplug_vo_out_pgx64.la +endif endif if HAVE_AA @@ -47,7 +50,8 @@ endif # "xineplug_vo_out_*" lib_LTLIBRARIES = $(xshm_module) $(xv_module) $(directfb_module) $(aa_module) \ - $(syncfb_module) $(fb_module) $(opengl_module) $(sdl_module) $(vidix_module) + $(syncfb_module) $(fb_module) $(opengl_module) \ + $(sdl_module) $(vidix_module) $(pgx64_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 \ @@ -91,6 +95,10 @@ xineplug_vo_out_vidix_la_SOURCES = alphablend.c video_out_vidix.c xineplug_vo_out_vidix_la_LIBADD = $(X_LIBS) $(top_builddir)/src/video_out/vidix/libvidix.la xineplug_vo_out_vidix_la_LDFLAGS = -avoid-version -module +xineplug_vo_out_pgx64_la_SOURCES = video_out_pgx64.c +xineplug_vo_out_pgx64_la_LIBADD = $(X_LIBS) +xineplug_vo_out_pgx64_la_LDFLAGS = -avoid-version -module + noinst_HEADERS = yuv2rgb.h video_out_syncfb.h alphablend.h deinterlace.h include_HEADERS = video_out_x11.h |