summaryrefslogtreecommitdiff
path: root/mozilla-1494037.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2018-10-19 12:40:07 +0200
committerMartin Stransky <stransky@redhat.com>2018-10-19 12:40:07 +0200
commit158294b3853f32d91c9ec6a213df88552ffa7242 (patch)
tree9cff890b8c8bc9915ce01d4933c9ea16b63b28a1 /mozilla-1494037.patch
parentAdded prio build patch (diff)
downloadlibrewolf-fedora-ff-158294b3853f32d91c9ec6a213df88552ffa7242.tar.gz
librewolf-fedora-ff-158294b3853f32d91c9ec6a213df88552ffa7242.tar.bz2
librewolf-fedora-ff-158294b3853f32d91c9ec6a213df88552ffa7242.zip
Added fixes for mozbz#1494037 and mozbz#1500366
Diffstat (limited to 'mozilla-1494037.patch')
-rw-r--r--mozilla-1494037.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/mozilla-1494037.patch b/mozilla-1494037.patch
new file mode 100644
index 0000000..0560f84
--- /dev/null
+++ b/mozilla-1494037.patch
@@ -0,0 +1,21 @@
+# HG changeset patch
+# User A. Wilcox <AWilcox@Wilcox-Tech.com>
+# Date 1539547360 0
+# Sun Oct 14 20:02:40 2018 +0000
+# Node ID e2e56a6a68b281301932f4fbf30cea6f7499ec41
+# Parent ddb031ea38070f454bdc89429c501ec1ff9c54d4
+Bug 1494037 - Fix Cairo build bustage on PowerPC platforms.
+
+diff -r ddb031ea3807 -r e2e56a6a68b2 gfx/cairo/libpixman/src/pixman-vmx.c
+--- a/gfx/cairo/libpixman/src/pixman-vmx.c Sun Oct 14 20:00:46 2018 +0000
++++ b/gfx/cairo/libpixman/src/pixman-vmx.c Sun Oct 14 20:02:40 2018 +0000
+@@ -25,7 +25,9 @@
+ * Based on fbmmx.c by Owen Taylor, Søren Sandmann and Nicholas Miell
+ */
+
++#ifdef HAVE_CONFIG_H
+ #include <config.h>
++#endif
+ #include "pixman-private.h"
+ #include "pixman-combine32.h"
+ #include <altivec.h>
bgstack15