Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xiph/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorslicer <slicer@mumble.hive.no>2009-12-23 03:53:55 +0300
committerslicer <slicer@mumble.hive.no>2009-12-23 03:53:55 +0300
commit22b4c8673d72c562861770abb629afec4da3fb9f (patch)
tree98988f95965af555e9e975b84d3a9fcd4a31fd65
parent7bd8f386be9d5449307087eb845d1d35d96f1e40 (diff)
Update speexclient to use speexdsp from pkg-config
-rwxr-xr-xspeexclient/compile.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/speexclient/compile.sh b/speexclient/compile.sh
index fe93af5..fae58a0 100755
--- a/speexclient/compile.sh
+++ b/speexclient/compile.sh
@@ -1,2 +1,3 @@
#!/bin/sh
-gcc -Wall -I../include speex_jitter_buffer.c speexclient.c alsa_device.c -o speexclient -lspeex -lspeexdsp -lasound -lm
+gcc -Wall -I../include speex_jitter_buffer.c speexclient.c alsa_device.c `pkg-config --cflags speexdsp` -o speexclient -lspeex -lspeexdsp -lasound -lm `pkg-config --libs speexdsp`
+