diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-10-18 20:04:24 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-10-18 20:04:24 +0000 |
commit | 0f024d43d2ae6db9362855783e1b3ad3e3460929 (patch) | |
tree | 3125ad351c94eb6f8c66e52ef7bf099292a5567a /src/video_out/Makefile.am | |
parent | 8bb89fd2610320780a1db6763451492ded6bdccb (diff) | |
download | xine-lib-0f024d43d2ae6db9362855783e1b3ad3e3460929.tar.gz xine-lib-0f024d43d2ae6db9362855783e1b3ad3e3460929.tar.bz2 |
Adapt AA vo plugin to new API (fully untested yet).
CVS patchset: 2853
CVS date: 2002/10/18 20:04:24
Diffstat (limited to 'src/video_out/Makefile.am')
-rw-r--r-- | src/video_out/Makefile.am | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/video_out/Makefile.am b/src/video_out/Makefile.am index d4916d70a..833814691 100644 --- a/src/video_out/Makefile.am +++ b/src/video_out/Makefile.am @@ -15,26 +15,26 @@ LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic libdir = $(XINE_PLUGINDIR) -#if HAVE_X11 +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 +if HAVE_XV xv_module = xineplug_vo_out_xv.la -#endif +endif #if HAVE_OPENGL #opengl_module = xineplug_vo_out_opengl.la #endif #if HAVE_SUNFB #pgx64_module = xineplug_vo_out_pgx64.la #endif -#endif +endif -#if HAVE_AA -#aa_module = xineplug_vo_out_aa.la -#endif +if HAVE_AA +aa_module = xineplug_vo_out_aa.la +endif #if HAVE_FB #fb_module = xineplug_vo_out_fb.la @@ -57,7 +57,7 @@ xv_module = xineplug_vo_out_xv.la #lib_LTLIBRARIES = $(xshm_module) $(xv_module) $(directfb_module) \ # $(syncfb_module) $(fb_module) $(opengl_module) $(sdl_module) $(vidix_module) -lib_LTLIBRARIES = $(xv_module) +lib_LTLIBRARIES = $(xv_module) $(aa_module) xineplug_vo_out_xv_la_SOURCES = deinterlace.c alphablend.c video_out_xv.c xineplug_vo_out_xv_la_LIBADD = \ @@ -84,9 +84,9 @@ xineplug_vo_out_xv_la_LDFLAGS = -avoid-version -module #xineplug_vo_out_syncfb_la_LIBADD = $(X_LIBS) $(top_builddir)/src/xine-engine/libxine.la #xineplug_vo_out_syncfb_la_LDFLAGS = -avoid-version -module -#xineplug_vo_out_aa_la_SOURCES = video_out_aa.c -#xineplug_vo_out_aa_la_LIBADD = $(AALIB_LIBS) -#xineplug_vo_out_aa_la_LDFLAGS = -avoid-version -module +xineplug_vo_out_aa_la_SOURCES = video_out_aa.c +xineplug_vo_out_aa_la_LIBADD = $(AALIB_LIBS) +xineplug_vo_out_aa_la_LDFLAGS = -avoid-version -module #xineplug_vo_out_fb_la_SOURCES = yuv2rgb.c yuv2rgb_mmx.c yuv2rgb_mlib.c \ # alphablend.c video_out_fb.c |