summaryrefslogtreecommitdiff
path: root/tools/rbspeex/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/rbspeex/Makefile')
-rw-r--r--tools/rbspeex/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/rbspeex/Makefile b/tools/rbspeex/Makefile
index 8c46677ce8..87ce08f3e7 100644
--- a/tools/rbspeex/Makefile
+++ b/tools/rbspeex/Makefile
@@ -33,7 +33,10 @@ endif
33 33
34# don't try to use the systems libspeex when building a static binary. 34# don't try to use the systems libspeex when building a static binary.
35ifndef STATIC 35ifndef STATIC
36SYS_SPEEX = $(shell pkg-config --libs speex) 36SYS_SPEEX = $(shell pkg-config --silence-errors --libs speex)
37ifneq ($(SYS_SPEEX),)
38SYS_SPEEX += $(shell pkg-config --silence-errors --libs speexdsp)
39endif
37endif 40endif
38 41
39# fall back to our own librbspeex if no suitable found. 42# fall back to our own librbspeex if no suitable found.