aboutsummaryrefslogtreecommitdiffstats
path: root/testing/thunderbird/fix-bug-1261392.patch
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2019-10-26 17:04:12 +0200
committerRasmus Thomsen <oss@cogitri.dev>2019-10-26 23:11:17 +0200
commit7e130731a332e3d5d593b52869e2f4e02da33f59 (patch)
tree5078b4359f3939c406c071405faea8bedc516154 /testing/thunderbird/fix-bug-1261392.patch
parent00be3a44472d6239a5052218d41d055fba9b3634 (diff)
downloadaports-7e130731a332e3d5d593b52869e2f4e02da33f59.tar.bz2
aports-7e130731a332e3d5d593b52869e2f4e02da33f59.tar.xz
testing/thunderbird: upgrade to 68.2.0
Diffstat (limited to 'testing/thunderbird/fix-bug-1261392.patch')
-rw-r--r--testing/thunderbird/fix-bug-1261392.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/testing/thunderbird/fix-bug-1261392.patch b/testing/thunderbird/fix-bug-1261392.patch
deleted file mode 100644
index acf56e1ece..0000000000
--- a/testing/thunderbird/fix-bug-1261392.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-diff --git a/tools/profiler/core/platform.h b/tools/profiler/core/platform.h
-index 5f0fb69..086a511 100644
---- a/tools/profiler/core/platform.h
-+++ b/tools/profiler/core/platform.h
-@@ -42,10 +42,11 @@
- #include "PlatformMacros.h"
- #include <vector>
-
--// We need a definition of gettid(), but glibc doesn't provide a
--// wrapper for it.
--#if defined(__GLIBC__)
-+// We need a definition of gettid(), but Linux libc implementations don't
-+// provide a wrapper for it (except for Bionic)
-+#if defined(__linux__)
- #include <unistd.h>
-+#if !defined(__BIONIC__)
- #include <sys/syscall.h>
- static inline pid_t gettid() { return (pid_t)syscall(SYS_gettid); }
- #elif defined(GP_OS_darwin)
-@@ -61,6 +62,7 @@ static inline pid_t gettid() { return (pid_t)syscall(SYS_thread_selfid); }
- #define getpid _getpid
- #endif
- #endif
-+#endif
-
- extern mozilla::LazyLogModule gProfilerLog;
-