summaryrefslogtreecommitdiff
path: root/build-ppc64-s390x-curl.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2018-03-06 15:00:42 +0100
committerMartin Stransky <stransky@redhat.com>2018-03-06 15:00:42 +0100
commitbee8e7456aef10b3298647cb20f73f7b5803c852 (patch)
treecbfc930f57395b21dcbc6b1cfe3fa562e165ee97 /build-ppc64-s390x-curl.patch
parentFix prefs because of rpm (diff)
parentFix crash when e10s is disabled and default wl_queue is processed. (diff)
downloadlibrewolf-fedora-ff-bee8e7456aef10b3298647cb20f73f7b5803c852.tar.gz
librewolf-fedora-ff-bee8e7456aef10b3298647cb20f73f7b5803c852.tar.bz2
librewolf-fedora-ff-bee8e7456aef10b3298647cb20f73f7b5803c852.zip
Merged with firefox-59
Diffstat (limited to 'build-ppc64-s390x-curl.patch')
-rw-r--r--build-ppc64-s390x-curl.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/build-ppc64-s390x-curl.patch b/build-ppc64-s390x-curl.patch
deleted file mode 100644
index 6c303f3..0000000
--- a/build-ppc64-s390x-curl.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -up firefox-54.0/toolkit/crashreporter/google-breakpad/src/third_party/curl/curlbuild.h.ppc-curl firefox-54.0/toolkit/crashreporter/google-breakpad/src/third_party/curl/curlbuild.h
---- firefox-54.0/toolkit/crashreporter/google-breakpad/src/third_party/curl/curlbuild.h.ppc-curl 2017-06-09 23:31:15.186207877 +0200
-+++ firefox-54.0/toolkit/crashreporter/google-breakpad/src/third_party/curl/curlbuild.h 2017-06-10 00:21:26.731117206 +0200
-@@ -155,7 +155,8 @@
-
- /* The size of `long', as computed by sizeof. */
- #if defined(_M_X64) || (defined(__x86_64__) && !defined(__ILP32__)) || \
-- defined(__aarch64__) || (defined(__mips__) && _MIPS_SIM == _ABI64)
-+ defined(__aarch64__) || (defined(__mips__) && _MIPS_SIM == _ABI64) || \
-+ defined(__PPC64__) || defined(__pcc64le__) || defined(__S390X__) || defined(__s390x__)
- #define CURL_SIZEOF_LONG 8
- #else
- #define CURL_SIZEOF_LONG 4
bgstack15