components/desktop/thunderbird/patches/firefox31-409-thumbnail-sparc.patch
changeset 5255 cea0e462549a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/desktop/thunderbird/patches/firefox31-409-thumbnail-sparc.patch	Mon Jan 11 09:27:45 2016 -0800
@@ -0,0 +1,16 @@
+Either already fixed or we can send upstream.
+
+--- comm-esr31/mozilla/gfx/2d/DataSurfaceHelpers.cpp.orig	2015-06-04 17:42:52.952071382 -0700
++++ comm-esr31/mozilla/gfx/2d/DataSurfaceHelpers.cpp	2015-06-04 17:42:52.954656062 -0700
+@@ -19,11 +19,7 @@
+ 
+   for (int row = 0; row < aSize.height; ++row) {
+     for (int column = 0; column < aSize.width; ++column) {
+-#ifdef IS_BIG_ENDIAN
+-      pixel[column] |= 0x000000FF;
+-#else
+       pixel[column] |= 0xFF000000;
+-#endif
+     }
+     pixel += (aStride/4);
+   }