0011-contrib-opus-disable-asm-on-arm.patch 713 B

123456789101112131415161718192021222324252627
  1. From 0e191e19286e87a993d35b021e3f659842efbec2 Mon Sep 17 00:00:00 2001
  2. From: =?UTF-8?q?Felix=20Paul=20K=C3=BChne?= <fkuehne@videolan.org>
  3. Date: Wed, 15 Jan 2014 15:26:46 +0100
  4. Subject: [PATCH 11/20] contrib/opus disable asm on arm
  5. ---
  6. contrib/src/opus/rules.mak | 3 +++
  7. 1 file changed, 3 insertions(+)
  8. diff --git a/contrib/src/opus/rules.mak b/contrib/src/opus/rules.mak
  9. index d783648..f09a112 100644
  10. --- a/contrib/src/opus/rules.mak
  11. +++ b/contrib/src/opus/rules.mak
  12. @@ -23,6 +23,9 @@ OPUS_CONF=
  13. ifndef HAVE_FPU
  14. OPUS_CONF += --enable-fixed-point
  15. endif
  16. +ifdef HAVE_IOS
  17. +OPUS_CONF += --disable-asm
  18. +endif
  19. .opus: opus
  20. cd $< && $(HOSTVARS) ./configure $(HOSTCONF) $(OPUS_CONF)
  21. --
  22. 1.8.5.2 (Apple Git-48)