summaryrefslogtreecommitdiff
path: root/tools/rbspeex/Makefile
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2009-10-13 20:53:25 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2009-10-13 20:53:25 +0000
commitbc748951b976342c2c0216ed13b6d64b29b121d4 (patch)
tree1e520f8a2781a4d0f4c240adb4bf3a7d1e2f1c0b /tools/rbspeex/Makefile
parent81ef39bd8d6005c09d8245ab36ed87f38a4aa95c (diff)
downloadrockbox-bc748951b976342c2c0216ed13b6d64b29b121d4.tar.gz
rockbox-bc748951b976342c2c0216ed13b6d64b29b121d4.zip
Fix building Rockbox Utility when using newer versions of libspeex.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23164 a1c6a512-1295-4272-9138-f99709370657
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.