summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2010-09-05 10:27:39 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2010-09-05 10:27:39 +0000
commitd71d537b17f8a3cf385a6523b4d22458831a4afe (patch)
tree166d3d4ec34163848031c9483d62bb25ecae8e69 /tools
parentdbde63bfecc54b9d6402c81bf2bb32b78ec64d08 (diff)
downloadrockbox-d71d537b17f8a3cf385a6523b4d22458831a4afe.tar.gz
rockbox-d71d537b17f8a3cf385a6523b4d22458831a4afe.zip
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
Diffstat (limited to 'tools')
-rw-r--r--tools/rbspeex/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/rbspeex/Makefile b/tools/rbspeex/Makefile
index 267ef8d6d7..2fb1c4dc00 100644
--- a/tools/rbspeex/Makefile
+++ b/tools/rbspeex/Makefile
@@ -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.