Skip to content
Snippets Groups Projects
Commit 7d7090ef authored by Russell Bryant's avatar Russell Bryant
Browse files

look in CROSS_COMPILE_TARGET for speex headers (issue #5118)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6514 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent aa6883ab
No related branches found
No related tags found
No related merge requests found
......@@ -31,18 +31,18 @@ ifneq (${UI_SPEEX},)
endif
ifneq (${UIS_SPEEX},)
MODSPEEX=codec_speex.so
CFLAGS+=-I/usr/include/speex
CFLAGS+=-I$(CROSS_COMPILE_TARGET)/usr/include/speex
LIBSPEEX+=-lspeex -lm
endif
ifneq (${ULI_SPEEX},)
MODSPEEX=codec_speex.so
CFLAGS+=-I/usr/local/include
CFLAGS+=-I$(CROSS_COMPILE_TARGET)/usr/local/include
LIBSPEEX=-L$(CROSS_COMPILE_TARGET)/usr/local/lib
LIBSPEEX+=-lspeex -lm
endif
ifneq (${ULIS_SPEEX},)
MODSPEEX=codec_speex.so
CFLAGS+=-I/usr/local/include/speex
CFLAGS+=-I$(CROSS_COMPILE_TARGET)/usr/local/include/speex
LIBSPEEX=-L$(CROSS_COMPILE_TARGET)/usr/local/lib
LIBSPEEX+=-lspeex -lm
endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment