summaryrefslogtreecommitdiff
path: root/data/patches/gnuzilla-bug-1025689.patch
diff options
context:
space:
mode:
authorRuben Rodriguez <ruben@gnu.org>2015-03-08 15:14:03 +0000
committerRuben Rodriguez <ruben@gnu.org>2015-03-08 15:14:03 +0000
commit9a0fd32cf6e2ada37675bc743532c5004b16e5e3 (patch)
treed66faa3279486d2e8ad72bf70e7ef522460372a0 /data/patches/gnuzilla-bug-1025689.patch
parent2732de330618bc29b7ab07f4004d8e84f698cf95 (diff)
Added patches to fix build bugs for Windows, MacOS and Android
Diffstat (limited to 'data/patches/gnuzilla-bug-1025689.patch')
-rw-r--r--data/patches/gnuzilla-bug-1025689.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/data/patches/gnuzilla-bug-1025689.patch b/data/patches/gnuzilla-bug-1025689.patch
new file mode 100644
index 0000000..9364624
--- /dev/null
+++ b/data/patches/gnuzilla-bug-1025689.patch
@@ -0,0 +1,19 @@
+diff -ru mozilla-esr31/media/libopus/moz.build icecat-31.4.0/media/libopus/moz.build
+--- a/media/libopus/moz.build 2015-01-06 06:08:03.000000000 +0100
++++ b/media/libopus/moz.build 2015-02-02 02:37:44.416803188 +0100
+@@ -23,10 +23,11 @@
+ DEFINES['OPUS_ARM_ASM'] = True
+ DEFINES['OPUS_ARM_EXTERNAL_ASM'] = True
+ DEFINES['OPUS_ARM_INLINE_ASM'] = True
+- DEFINES['OPUS_ARM_INLINE_EDSP'] = True
+- DEFINES['OPUS_ARM_MAY_HAVE_EDSP'] = True
+- DEFINES['OPUS_ARM_MAY_HAVE_MEDIA'] = True
+- DEFINES['OPUS_ARM_MAY_HAVE_NEON'] = True
++ if int(CONFIG['ARM_ARCH']) >= 6:
++ DEFINES['OPUS_ARM_INLINE_EDSP'] = True
++ DEFINES['OPUS_ARM_MAY_HAVE_EDSP'] = True
++ DEFINES['OPUS_ARM_MAY_HAVE_MEDIA'] = True
++ DEFINES['OPUS_ARM_MAY_HAVE_NEON'] = True
+
+ if CONFIG['MOZ_DEBUG']:
+ DEFINES['ENABLE_ASSERTIONS'] = True