summaryrefslogtreecommitdiff
path: root/mozilla-build-arm.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@anakreon.cz>2014-02-03 11:27:18 +0100
committerMartin Stransky <stransky@anakreon.cz>2014-02-03 11:27:18 +0100
commitf6e2a4f3f2c3bc0b4a01053c5d1f59d2ca6e5bd2 (patch)
tree1607610cee0a75fab05ac80458abae5def362ed5 /mozilla-build-arm.patch
parentDisabled system cairo (diff)
downloadlibrewolf-fedora-ff-f6e2a4f3f2c3bc0b4a01053c5d1f59d2ca6e5bd2.tar.gz
librewolf-fedora-ff-f6e2a4f3f2c3bc0b4a01053c5d1f59d2ca6e5bd2.tar.bz2
librewolf-fedora-ff-f6e2a4f3f2c3bc0b4a01053c5d1f59d2ca6e5bd2.zip
Updated to 27.0
Diffstat (limited to 'mozilla-build-arm.patch')
-rw-r--r--mozilla-build-arm.patch31
1 files changed, 4 insertions, 27 deletions
diff --git a/mozilla-build-arm.patch b/mozilla-build-arm.patch
index 4f25113..d61884e 100644
--- a/mozilla-build-arm.patch
+++ b/mozilla-build-arm.patch
@@ -1,35 +1,12 @@
-diff -up mozilla-release/gfx/layers/BufferUnrotate.cpp.arm mozilla-release/gfx/layers/BufferUnrotate.cpp
---- mozilla-release/gfx/layers/BufferUnrotate.cpp.arm 2013-12-05 17:07:31.000000000 +0100
-+++ mozilla-release/gfx/layers/BufferUnrotate.cpp 2013-12-10 14:47:43.234182482 +0100
-@@ -8,6 +8,7 @@
- #include <stdint.h>
- #include <stdio.h>
- #include <stdlib.h>
-+#include <string.h>
-
- void BufferUnrotate(uint8_t* aBuffer, int aByteWidth, int aHeight,
- int aByteStride, int aXBoundary, int aYBoundary)
-diff -up mozilla-release/gfx/ycbcr/moz.build.arm mozilla-release/gfx/ycbcr/moz.build
---- mozilla-release/gfx/ycbcr/moz.build.arm 2013-12-05 17:07:32.000000000 +0100
-+++ mozilla-release/gfx/ycbcr/moz.build 2013-12-10 14:47:43.235182479 +0100
+diff -up firefox-27.0/mozilla-release/gfx/ycbcr/moz.build.arm firefox-27.0/mozilla-release/gfx/ycbcr/moz.build
+--- firefox-27.0/mozilla-release/gfx/ycbcr/moz.build.arm 2014-01-28 05:03:42.000000000 +0100
++++ firefox-27.0/mozilla-release/gfx/ycbcr/moz.build 2014-02-03 11:14:34.062219509 +0100
@@ -61,7 +61,7 @@ else:
'yuv_row_other.cpp',
]
-if CONFIG['CPU_ARCH'] == 'arm' and CONFIG['HAVE_ARM_NEON']:
+if CONFIG['HAVE_ARM_NEON']:
- ASFILES += [
+ SOURCES += [
'yuv_row_arm.s',
]
-diff -up mozilla-release/media/libtheora/lib/moz.build.arm mozilla-release/media/libtheora/lib/moz.build
---- mozilla-release/media/libtheora/lib/moz.build.arm 2013-12-05 17:07:48.000000000 +0100
-+++ mozilla-release/media/libtheora/lib/moz.build 2013-12-12 11:45:41.882119059 +0100
-@@ -8,7 +8,7 @@ MODULE = 'theora'
-
- LIBRARY_NAME = 'theora'
-
--if CONFIG['OS_TEST'] == 'arm' and CONFIG['GNU_AS']:
-+if CONFIG['HAVE_ARM_NEON'] and CONFIG['GNU_AS']:
- asm_suffix = CONFIG['ASM_SUFFIX']
- ASFILES += [
- 'armbits-gnu.%s' % asm_suffix,
bgstack15