Commit a0d91d13 authored by Rafaël Carré's avatar Rafaël Carré Committed by Jean-Baptiste Kempf

contrib: speex: enable ARM asm and fixed point if FPU is missing

(cherry picked from commit 7a6940fb)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 75323149
......@@ -20,9 +20,17 @@ speex: speex-$(SPEEX_VERSION).tar.gz .sum-speex
# TODO: fixed point and ASM opts
CONFIG_OPTS := --without-ogg
ifndef HAVE_FPU
CONFIG_OPTS += --enable-fixed-point
endif
ifeq ($(ARCH),arm)
CONFIG_OPTS += --enable-arm5e-asm
endif
.speex: speex
$(RECONF)
cd $< && $(HOSTVARS) ./configure $(HOSTCONF) --without-ogg
cd $< && $(HOSTVARS) ./configure $(HOSTCONF) $(CONFIG_OPTS)
cd $< && $(MAKE) install
touch $@
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment