diff options
| author | Matt Messier <mmessier@grapetv.org> | 2007-05-12 14:18:38 -0400 |
|---|---|---|
| committer | Matt Messier <mmessier@grapetv.org> | 2007-05-12 14:18:38 -0400 |
| commit | aa6b402b7a240b6f55c063b021c5c211f46ec8bd (patch) | |
| tree | a4c14e2633b549f8d2ffe3d1bef9363a4c771cb3 /src/video_out | |
| parent | 67b0ebb21185cb8ea2972dead6870bab8306724e (diff) | |
| download | xine-lib-aa6b402b7a240b6f55c063b021c5c211f46ec8bd.tar.gz xine-lib-aa6b402b7a240b6f55c063b021c5c211f46ec8bd.tar.bz2 | |
More configure/Makefile cleanups
-- Make a pass at cleaning up contrib/ Makefile.am files
-- Rename many AM_CONDITIONALS for consistency and give them better names to
better indicate what they mean
-- Remove some dead input plugin tests
-- Clean up AM_PATH_DVDNAV
Diffstat (limited to 'src/video_out')
| -rw-r--r-- | src/video_out/Makefile.am | 34 | ||||
| -rw-r--r-- | src/video_out/libdha/Makefile.am | 2 | ||||
| -rw-r--r-- | src/video_out/vidix/drivers/Makefile.am | 2 |
3 files changed, 18 insertions, 20 deletions
diff --git a/src/video_out/Makefile.am b/src/video_out/Makefile.am index efea3f3b7..a37eae3eb 100644 --- a/src/video_out/Makefile.am +++ b/src/video_out/Makefile.am @@ -11,14 +11,14 @@ SUBDIRS += libdha endif # vidix depends on portions of dha -if HAVE_VIDIX +if ENABLE_VIDIX if !BUILD_DHA_KMOD SUBDIRS += libdha endif SUBDIRS += vidix endif -if HAVE_MACOSX_VIDEO +if ENABLE_MACOSX_VIDEO SUBDIRS += macosx endif @@ -41,63 +41,63 @@ endif if HAVE_OPENGL opengl_module = xineplug_vo_out_opengl.la endif -if HAVE_SYNCFB +if ENABLE_SYNCFB syncfb_module = xineplug_vo_out_syncfb.la endif -if HAVE_SUNFB -if HAVE_SUNDGA +if ENABLE_SUNFB +if ENABLE_SUNDGA pgx64_module = xineplug_vo_out_pgx64.la pgx32_module = xineplug_vo_out_pgx32.la endif endif endif -if HAVE_XCB +if ENABLE_XCB XCBOSD = xcbosd.c -if HAVE_XCBSHM +if ENABLE_XCBSHM xcbshm_module = xineplug_vo_out_xcbshm.la endif -if HAVE_XCBXV +if ENABLE_XCBXV xcbxv_module = xineplug_vo_out_xcbxv.la endif endif -if HAVE_VIDIX +if ENABLE_VIDIX vidix_module = xineplug_vo_out_vidix.la endif -if HAVE_AA +if ENABLE_AA aa_module = xineplug_vo_out_aa.la endif -if HAVE_CACA +if ENABLE_CACA caca_module = xineplug_vo_out_caca.la endif -if HAVE_FB +if ENABLE_FB fb_module = xineplug_vo_out_fb.la endif -if HAVE_DIRECTFB +if ENABLE_DIRECTFB directfb_module = xineplug_vo_out_directfb.la if HAVE_X11 directfb_module += xineplug_vo_out_xdirectfb.la endif endif -if HAVE_SDL +if ENABLE_SDL sdl_module = xineplug_vo_out_sdl.la endif -if HAVE_STK +if ENABLE_STK stk_module = xineplug_vo_out_stk.la endif -if HAVE_DIRECTX +if ENABLE_DIRECTX directx_module = xineplug_vo_out_directx.la endif -if HAVE_MACOSX_VIDEO +if ENABLE_MACOSX_VIDEO macosx_module = xineplug_vo_out_macosx.la endif diff --git a/src/video_out/libdha/Makefile.am b/src/video_out/libdha/Makefile.am index de63444c0..05aebb704 100644 --- a/src/video_out/libdha/Makefile.am +++ b/src/video_out/libdha/Makefile.am @@ -15,7 +15,7 @@ CLEANFILES = $(awk_generated) noinst_HEADERS = AsmMacros.h libdha.h pci_ids.h pci_names.h pci_vendors.h -if HAVE_VIDIX +if ENABLE_VIDIX noinst_LTLIBRARIES = libdha.la endif diff --git a/src/video_out/vidix/drivers/Makefile.am b/src/video_out/vidix/drivers/Makefile.am index 1ad68da26..db3adc078 100644 --- a/src/video_out/vidix/drivers/Makefile.am +++ b/src/video_out/vidix/drivers/Makefile.am @@ -10,7 +10,6 @@ EXTRA_DIST = genfb_vid.c noinst_HEADERS = mach64.h glint_regs.h pm3_regs.h radeon.h savage_regs.h \ cyberblade_regs.h unichrome_regs.h sis_defs.h sis_regs.h -if HAVE_VIDIX vidix_LTLIBRARIES = \ mach64_vid.la \ mga_crtc2_vid.la \ @@ -24,7 +23,6 @@ vidix_LTLIBRARIES = \ nvidia_vid.la \ sis_vid.la \ savage_vid.la -endif cyberblade_vid_la_SOURCES = cyberblade_vid.c |
