Makefile.am: Add PULSE_LIBS for linking the mixer when compiling with pulse

Commit 3a3158 introduced a small bug where the pulseaudio mixer would not link
with the main binary in some situations.
This commit is contained in:
Avuton Olrich 2011-11-13 14:19:38 -08:00
parent 1e89ca0994
commit ef369c2e2b
1 changed files with 5 additions and 1 deletions

View File

@ -33,7 +33,7 @@ src_mpd_LDADD = \
$(OUTPUT_LIBS) \
$(FILTER_LIBS) \
$(ENCODER_LIBS) \
libmixer_plugins.a \
$(MIXER_LIBS) \
$(GLIB_LIBS)
mpd_headers = \
@ -741,6 +741,10 @@ OUTPUT_API_SRC = \
liboutput_plugins_a_SOURCES = \
src/output/null_output_plugin.c
MIXER_LIBS = \
libmixer_plugins.a \
$(PULSE_LIBS)
MIXER_API_SRC = \
src/mixer_control.c \
src/mixer_type.c \