diff -Nru x264-0.133.2339+git585324f/debian/changelog x264-0.133.2339+git585324f/debian/changelog --- x264-0.133.2339+git585324f/debian/changelog 2013-08-19 16:00:01.000000000 +0000 +++ x264-0.133.2339+git585324f/debian/changelog 2013-10-26 10:13:20.000000000 +0000 @@ -1,3 +1,9 @@ +x264 (2:0.133.2339+git585324f-2+rpi1) jessie-staging; urgency=low + + * Disable build of neon variant + + -- Peter Michael Green Sat, 26 Oct 2013 09:36:45 +0000 + x264 (2:0.133.2339+git585324f-2) unstable; urgency=low * Upload to unstable diff -Nru x264-0.133.2339+git585324f/debian/confflags x264-0.133.2339+git585324f/debian/confflags --- x264-0.133.2339+git585324f/debian/confflags 2013-08-19 16:00:01.000000000 +0000 +++ x264-0.133.2339+git585324f/debian/confflags 2013-10-26 09:37:08.000000000 +0000 @@ -124,18 +124,23 @@ ifeq (arm,$(DEB_HOST_GNU_CPU)) armv6t2_asm := movt r0, \#0 has_armv6t2 := $(call check_asm, $(armv6t2_asm)) -ifeq ($(has_armv6t2),1) +#ifeq ($(has_armv6t2),1) # extract the actual -march= the toolchain targets toolchain_arch := $(shell $(CC) -v 2>&1 | sed -n '/^Configured with: / s/.* --with-arch=\([^ ]*\).*/\1/p') ifeq ($(toolchain_arch),) -toolchain_arch := armv6t2 +toolchain_arch := armv6 endif shared_extra_cflags += -march=$(toolchain_arch) -else -do_opt := yes -opt_libdir := /usr/lib/$(DEB_HOST_MULTIARCH)/neon/vfp shared_confflags += --disable-asm -endif +static_extra_cflags += -march=$(toolchain_arch) +static_confflags += --disable-asm + +do_opt := no +#else +#do_opt := yes +#opt_libdir := /usr/lib/$(DEB_HOST_MULTIARCH)/neon/vfp +#shared_confflags += --disable-asm +#endif endif # S390 upstream arch, s390 and s390x Debian arches; no upstream flags by