diff options
Diffstat (limited to 'src/audio_out')
-rw-r--r-- | src/audio_out/Makefile.am | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/src/audio_out/Makefile.am b/src/audio_out/Makefile.am index c8c82ee32..1b82e5da1 100644 --- a/src/audio_out/Makefile.am +++ b/src/audio_out/Makefile.am @@ -6,6 +6,10 @@ LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic libdir = $(XINE_PLUGINDIR) +# +# alsa plugin is completely broken due to major api change +# on the alsa project side +# if HAVE_ALSA alsa_module = xineplug_ao_out_alsa.la endif @@ -20,18 +24,19 @@ endif # All of xine audio out plugins should be named like the # scheme "xineplug_ao_out_" # -lib_LTLIBRARIES = xineplug_ao_out_oss.la $(alsa_module) $(esd_module) +#lib_LTLIBRARIES = xineplug_ao_out_oss.la $(alsa_module) $(esd_module) +lib_LTLIBRARIES = xineplug_ao_out_oss.la xineplug_ao_out_oss_la_SOURCES = audio_oss_out.c resample.c xineplug_ao_out_oss_la_LDFLAGS = -avoid-version -module -xineplug_ao_out_alsa_la_SOURCES = audio_alsa_out.c resample.c -xineplug_ao_out_alsa_la_LIBADD = $(ALSA_LIBS) -xineplug_ao_out_alsa_la_LDFLAGS = -avoid-version -module +#xineplug_ao_out_alsa_la_SOURCES = audio_alsa_out.c resample.c +#xineplug_ao_out_alsa_la_LIBADD = $(ALSA_LIBS) +#xineplug_ao_out_alsa_la_LDFLAGS = -avoid-version -module -xineplug_ao_out_esd_la_SOURCES = audio_esd_out.c resample.c -xineplug_ao_out_esd_la_LIBADD = $(ESD_LIBS) -xineplug_ao_out_esd_la_LDFLAGS = -avoid-version -module +#xineplug_ao_out_esd_la_SOURCES = audio_esd_out.c resample.c +#xineplug_ao_out_esd_la_LIBADD = $(ESD_LIBS) +#xineplug_ao_out_esd_la_LDFLAGS = -avoid-version -module noinst_HEADERS = audio_oss_out.h audio_alsa_out.h audio_esd_out.h resample.h |