1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Dominik Riebeling 2009-10-13 20:53:25 +00:00
parent 81ef39bd8d
commit bc748951b9
2 changed files with 9 additions and 3 deletions

View file

@ -33,7 +33,10 @@ endif
# don't try to use the systems libspeex when building a static binary.
ifndef STATIC
SYS_SPEEX = $(shell pkg-config --libs speex)
SYS_SPEEX = $(shell pkg-config --silence-errors --libs speex)
ifneq ($(SYS_SPEEX),)
SYS_SPEEX += $(shell pkg-config --silence-errors --libs speexdsp)
endif
endif
# fall back to our own librbspeex if no suitable found.