1
0
Fork 0
forked from len0rd/rockbox

Don't search for libspeex on Windows and Mac.

Make sure to not try to dynamically link libspeex on Mac, since it's not a
standard library, and application bundles aren't statically linked anyway.
Remove looking up libspeex on Windows since it's not a standard library there
either. Don't search for libspeex multiple times but instead pass it to the
librbspeex Makefile.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27999 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2010-09-05 10:27:39 +00:00
parent dbde63bfec
commit d71d537b17
2 changed files with 18 additions and 9 deletions

View file

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