summaryrefslogtreecommitdiff
path: root/xulrunner-2.0-chromium-types.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@anakreon.cz>2014-04-24 10:36:49 +0200
committerMartin Stransky <stransky@anakreon.cz>2014-04-24 10:36:49 +0200
commitc01f068ad2c4f067ee945c485a91683abf1b400a (patch)
tree12618d5245a04a7b1b68215c2e47f935ff72d937 /xulrunner-2.0-chromium-types.patch
parentRemoved gcc47 patch which broke crashreporter (diff)
downloadlibrewolf-fedora-ff-c01f068ad2c4f067ee945c485a91683abf1b400a.tar.gz
librewolf-fedora-ff-c01f068ad2c4f067ee945c485a91683abf1b400a.tar.bz2
librewolf-fedora-ff-c01f068ad2c4f067ee945c485a91683abf1b400a.zip
Removed unused patch
Diffstat (limited to 'xulrunner-2.0-chromium-types.patch')
-rw-r--r--xulrunner-2.0-chromium-types.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/xulrunner-2.0-chromium-types.patch b/xulrunner-2.0-chromium-types.patch
deleted file mode 100644
index 7bba5eb..0000000
--- a/xulrunner-2.0-chromium-types.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff -up firefox-29.0/mozilla-release/gfx/ycbcr/chromium_types.h.chromium-types firefox-29.0/mozilla-release/gfx/ycbcr/chromium_types.h
---- firefox-29.0/mozilla-release/gfx/ycbcr/chromium_types.h.chromium-types 2014-04-22 07:27:47.000000000 +0200
-+++ firefox-29.0/mozilla-release/gfx/ycbcr/chromium_types.h 2014-04-22 15:46:24.288677788 +0200
-@@ -34,7 +34,11 @@ typedef uint32_t uint32;
- #define ARCH_CPU_ARM_FAMILY 1
- #define ARCH_CPU_ARMEL 1
- #define ARCH_CPU_32_BITS 1
--#elif defined(__ppc__) || defined(__powerpc) || defined(__PPC__)
-+#elif defined(__powerpc64__)
-+#define ARCH_CPU_PPC_FAMILY 1
-+#define ARCH_CPU_PPC 1
-+#define ARCH_CPU_64_BITS 1
-+#elif defined(__ppc__) || defined(__powerpc__) || defined(__PPC__)
- #define ARCH_CPU_PPC_FAMILY 1
- #define ARCH_CPU_PPC 1
- #define ARCH_CPU_32_BITS 1
-@@ -50,6 +54,14 @@ typedef uint32_t uint32;
- #define ARCH_CPU_AARCH64_FAMILY 1
- #define ARCH_CPU_AARCH64 1
- #define ARCH_CPU_64_BITS 1
-+#elif defined(__s390x__)
-+#define ARCH_CPU_S390_FAMILY 1
-+#define ARCH_CPU_S390 1
-+#define ARCH_CPU_64_BITS 1
-+#elif defined(__s390__)
-+#define ARCH_CPU_S390_FAMILY 1
-+#define ARCH_CPU_S390 1
-+#define ARCH_CPU_32_BITS 1
- #else
- #warning Please add support for your architecture in chromium_types.h
- #endif
bgstack15