void-packages/srcpkgs/thunderbird/patches/fix-musl.patch
q66 2befab6352 thunderbird: update to 68.0
This also attempts to enable at least some degree of debug info
on 32-bit hosts as well as prepare for future ppc32 support.

It also synchronizes patches with firefox.
2019-08-30 10:15:18 +02:00

11 lines
449 B
Diff

--- tools/profiler/core/platform-linux-android.cpp.orig 2019-07-09 22:58:30.039475686 +0200
+++ tools/profiler/core/platform-linux-android.cpp 2019-07-09 22:58:39.331437677 +0200
@@ -73,7 +73,7 @@
int profiler_current_thread_id() {
// glibc doesn't provide a wrapper for gettid().
-#if defined(__GLIBC__)
+#if defined(__linux__)
return static_cast<int>(static_cast<pid_t>(syscall(SYS_gettid)));
#else
return static_cast<int>(gettid());