summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2014-09-24 08:48:46 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2014-09-24 08:48:46 +0200
commit165112421190ce9b44ce5d1508cb61f000fead5a (patch)
treefd391413f64bfe1face5ab9fa80bbe73e618b45f
parent80d60a1736ff82e65fd7634cd415779c47bc13ed (diff)
Add missing CFLAGS/LIBS for pulse.
-rw-r--r--src/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 0ad31cd..416bbcf 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,7 +1,7 @@
bin_PROGRAMS = simplertp simplertp-genkey
simplertp_LDADD = $(QT_LIBS) $(AO_LIBS) $(V4LC_LIBS) -ljpeg \
- $(OPUS_LIBS) $(AO_LIBS) \
+ $(OPUS_LIBS) $(AO_LIBS) $(PULSE_LIBS) \
$(top_srcdir)/lrtp/src/liblrtp.la \
$(top_srcdir)/libaudioin/src/libaudioin.la \
$(shell ../tools/MocList o ) qrc_simplertp.o
@@ -9,7 +9,7 @@ simplertp_LDADD = $(QT_LIBS) $(AO_LIBS) $(V4LC_LIBS) -ljpeg \
simplertp_CXXFLAGS = $(QT_CFLAGS) $(AO_CFLAGS) $(V4LC_CFLAGS) \
-I$(top_srcdir)/lrtp/src \
-I$(top_srcdir)/libaudioin/src \
- $(OPUS_CFLAGS) $(AO_CFLAGS)
+ $(OPUS_CFLAGS) $(AO_CFLAGS) $(PULSE_CFLAGS)
AM_CXXFLAGS = $(simplertp_CXXFLAGS)