From 1def08eaae63288b36e549f57b908725b944d650 Mon Sep 17 00:00:00 2001 From: Raphael Coeffic Date: Tue, 11 Mar 2008 14:11:01 +0000 Subject: [PATCH] fixed for openembedded git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@779 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/plug-in/speex/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/core/plug-in/speex/Makefile b/core/plug-in/speex/Makefile index 022a6b13..0a311f32 100644 --- a/core/plug-in/speex/Makefile +++ b/core/plug-in/speex/Makefile @@ -1,7 +1,7 @@ plug_in_name = speex -SPEEX_INC?=/usr/include/ -SPEEX_LIB?=-lspeex +SPEEX_INC=/usr/include/ +SPEEX_LIB=-lspeex # or: # SPEEXDIR?=speex_src @@ -14,6 +14,10 @@ SPEEX_LIB?=-lspeex module_ldflags = $(SPEEX_LIB) module_cflags = -I $(SPEEX_INC) -ansi # -DNOFPU +ifdef NOFPU + module_cflags += -DNOFPU +endif + # or # module_extra_objs = $(SPEEX_LIB) #extra_clean = clean_speex