aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/Makefile
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-09-05 15:48:47 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-09-05 15:48:47 +0000
commit59f8aa69faa262ef54fbaff981063ddbe563c2d5 (patch)
tree837f14b6e3349316c5c4999ba4b5dde400611031 /codecs/Makefile
parent61214d8766214be9fcf3fba0fd242177ef3d07de (diff)
look in CROSS_COMPILE_TARGET for speex headers (issue #5118)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6514 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs/Makefile')
-rwxr-xr-xcodecs/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/codecs/Makefile b/codecs/Makefile
index 6e096e19b..602215886 100755
--- a/codecs/Makefile
+++ b/codecs/Makefile
@@ -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