summaryrefslogtreecommitdiff
path: root/palemoon/mozilla-1533969-palemoon.patch
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-10-31 14:31:14 +0000
committerB Stack <bgstack15@gmail.com>2019-10-31 14:31:14 +0000
commit30f3c38726153a58d11d67ba5c80dddce097051a (patch)
tree7d0c490dd8bb3ce8832eb0fc3b14989558234bb6 /palemoon/mozilla-1533969-palemoon.patch
parentMerge branch 'centos-8' into 'master' (diff)
parentMerge branch 'palemoon-rpm' into 'palemoon-bump' (diff)
downloadstackrpms-30f3c38726153a58d11d67ba5c80dddce097051a.tar.gz
stackrpms-30f3c38726153a58d11d67ba5c80dddce097051a.tar.bz2
stackrpms-30f3c38726153a58d11d67ba5c80dddce097051a.zip
Merge branch 'palemoon-bump' into 'master'
Palemoon 28.7.2 See merge request bgstack15/stackrpms!98
Diffstat (limited to 'palemoon/mozilla-1533969-palemoon.patch')
-rw-r--r--palemoon/mozilla-1533969-palemoon.patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/palemoon/mozilla-1533969-palemoon.patch b/palemoon/mozilla-1533969-palemoon.patch
deleted file mode 100644
index d4ed4c4..0000000
--- a/palemoon/mozilla-1533969-palemoon.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-Source: https://bugzilla.mozilla.org/show_bug.cgi?id=1533969
-From: Emilio Cobos Álvarez (:emilio) https://bugzilla.mozilla.org/user_profile?user_id=546716
-Date: 2019-03-12 15:08 PDT
-Modified for Pale Moon by: B Stack <bgstack15@gmail.com>
-This patch is applicable for all versions of Fedora GNU/Linux, but it really only affects gcc >= 9.1.1 in fc == 31
---- tools/profiler/tasktracer/GeckoTaskTracer.cpp.orig 2019-06-04 18:16:01.000000000 -0400
-+++ tools/profiler/tasktracer/GeckoTaskTracer.cpp 2019-06-13 13:16:29.160643732 -0400
-@@ -20,19 +20,19 @@
-
- #include <stdarg.h>
-
--// We need a definition of gettid(), but glibc doesn't provide a
-+// We need a definition of gettid(), but old glibc versions don't provide a
- // wrapper for it.
- #if defined(__GLIBC__)
- #include <unistd.h>
- #include <sys/syscall.h>
--static inline pid_t gettid()
-+#define gettid() static_cast<pid_t>(syscall(SYS_gettid))
- {
- return (pid_t) syscall(SYS_gettid);
- }
- #elif defined(XP_MACOSX)
- #include <unistd.h>
- #include <sys/syscall.h>
--static inline pid_t gettid()
-+#define gettid() static_cast<pid_t>(syscall(SYS_thread_selfid))
- {
- return (pid_t) syscall(SYS_thread_selfid);
- }
---- js/src/jsnativestack.cpp.orig 2019-06-04 18:16:01.000000000 -0400
-+++ js/src/jsnativestack.cpp 2019-06-14 08:13:04.080567510 -0400
-@@ -26,11 +26,7 @@
- # include <sys/syscall.h>
- # include <sys/types.h>
- # include <unistd.h>
--static pid_t
--gettid()
--{
-- return syscall(__NR_gettid);
--}
-+# define gettid() static_cast<pid_t>(syscall(SYS_gettid))
- # endif
-
- #else
bgstack15