diff options
author | Christian Weisgerber <naddy@FreeBSD.org> | 2013-12-18 16:04:49 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@FreeBSD.org> | 2013-12-18 16:04:49 +0000 |
commit | 56ba5294e6a1004311c93d9817f7f3f23994e4d2 (patch) | |
tree | 09f3a453c650c499b52275e28d2c37b44fa1abb6 /audio/opus/files | |
parent | e195a4fac8e6a3b254f5e632ff10fb5b42514933 (diff) | |
download | ports-56ba5294e6a1004311c93d9817f7f3f23994e4d2.tar.gz ports-56ba5294e6a1004311c93d9817f7f3f23994e4d2.zip |
Notes
Diffstat (limited to 'audio/opus/files')
-rw-r--r-- | audio/opus/files/patch-configure | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/audio/opus/files/patch-configure b/audio/opus/files/patch-configure new file mode 100644 index 000000000000..4e78a15d5c71 --- /dev/null +++ b/audio/opus/files/patch-configure @@ -0,0 +1,20 @@ +--- configure.orig 2013-12-17 16:51:41.000000000 +0100 ++++ configure 2013-12-17 16:52:02.000000000 +0100 +@@ -12807,7 +12807,7 @@ else + CPU_ARM_FALSE= + fi + +- if test x"${inline_optimization:0:3}" = x"ARM"; then ++ if expr x"${inline_optimization}" : x"ARM" >/dev/null; then + OPUS_ARM_INLINE_ASM_TRUE= + OPUS_ARM_INLINE_ASM_FALSE='#' + else +@@ -12815,7 +12815,7 @@ else + OPUS_ARM_INLINE_ASM_FALSE= + fi + +- if test x"${asm_optimization:0:3}" = x"ARM"; then ++ if expr x"${asm_optimization}" : x"ARM" >/dev/null; then + OPUS_ARM_EXTERNAL_ASM_TRUE= + OPUS_ARM_EXTERNAL_ASM_FALSE='#' + else |