mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-19 00:00:09 +00:00
look in /usr/include/speex for speex.h (bug #3761)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5186 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
2
CHANGES
2
CHANGES
@@ -13,6 +13,8 @@ Asterisk 1.0.7
|
|||||||
-- A check has been added to avoid a crash.
|
-- A check has been added to avoid a crash.
|
||||||
-- app_voicemail
|
-- app_voicemail
|
||||||
-- Some checks have been added to avoid a crash.
|
-- Some checks have been added to avoid a crash.
|
||||||
|
-- speex
|
||||||
|
-- The path /usr/include/speex has been added for a place to look for the speex header.
|
||||||
|
|
||||||
Asterisk 1.0.6
|
Asterisk 1.0.6
|
||||||
|
|
||||||
|
|||||||
@@ -19,11 +19,12 @@
|
|||||||
#MODG723=codec_g723_1.so codec_g723_1b.so
|
#MODG723=codec_g723_1.so codec_g723_1b.so
|
||||||
MODG723=$(shell [ -f g723.1/coder.c ] && echo "codec_g723_1.so")
|
MODG723=$(shell [ -f g723.1/coder.c ] && echo "codec_g723_1.so")
|
||||||
MODG723+=$(shell [ -f g723.1b/coder2.c ] && echo "codec_g723_1b.so")
|
MODG723+=$(shell [ -f g723.1b/coder2.c ] && echo "codec_g723_1b.so")
|
||||||
MODSPEEX=$(shell [ -f /usr/include/speex.h ] || [ -f /usr/local/include/speex.h ] || [ -f /usr/local/include/speex/speex.h ] && echo "codec_speex.so")
|
MODSPEEX=$(shell [ -f /usr/include/speex.h ] || [ -f /usr/include/speex/speex.h ] || [ -f /usr/local/include/speex.h ] || [ -f /usr/local/include/speex/speex.h ] && echo "codec_speex.so")
|
||||||
MODILBC=$(shell [ -f ilbc/iLBC_decode.h ] && echo "codec_ilbc.so")
|
MODILBC=$(shell [ -f ilbc/iLBC_decode.h ] && echo "codec_ilbc.so")
|
||||||
CFLAGS+=-fPIC
|
CFLAGS+=-fPIC
|
||||||
CFLAGS+=$(shell [ -f /usr/local/include/speex.h ] && echo "-I/usr/local/include")
|
CFLAGS+=$(shell [ -f /usr/local/include/speex.h ] && echo "-I/usr/local/include")
|
||||||
CFLAGS+=$(shell [ -f /usr/local/include/speex/speex.h ] && echo "-I/usr/local/include/speex")
|
CFLAGS+=$(shell [ -f /usr/local/include/speex/speex.h ] && echo "-I/usr/local/include/speex")
|
||||||
|
CFLAGS+=$(shell [ -f /usr/include/speex/speex.h ] && echo "-I/usr/include/speex")
|
||||||
|
|
||||||
LIBG723=g723.1/libg723.a
|
LIBG723=g723.1/libg723.a
|
||||||
LIBG723B=g723.1b/libg723b.a
|
LIBG723B=g723.1b/libg723b.a
|
||||||
|
|||||||
Reference in New Issue
Block a user