Package: speex Version: 1.2~rc1-1 Severity: important Tags: patch Hi,
speex fails on armhf, because of problems with armv4 asm and thumb2 (used on armhf): https://buildd.debian.org/status/fetch.php?pkg=speex&arch=armhf&ver=1.2%7Erc1-1&stamp=1322380067 Could you please disable armv4 asm for now -patch attached- until we resolve the issue and fix asm on armhf again? Thanks Konstantinos
diff -ruN speex-1.2~rc1/debian/rules speex-1.2~rc1.armhf/debian/rules --- speex-1.2~rc1/debian/rules 2011-12-12 15:32:00.000000000 +0000 +++ speex-1.2~rc1.armhf/debian/rules 2011-12-12 15:32:46.246089212 +0000 @@ -19,6 +19,7 @@ DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) objdir = objs @@ -30,8 +31,10 @@ ifeq ($(DEB_HOST_ARCH_CPU),arm) objdir = $(objdir_fixedpoint) +ifeq ($(DEB_HOST_ARCH),armel) EXTRA_CONFIG_FLAGS = --enable-arm4-asm endif +endif ifeq ($(DEB_HOST_ARCH_CPU),i386) arch_objs += $(objdir_sse)

