aboutsummaryrefslogtreecommitdiffstats
path: root/community/firefox-esr/fix-musl.patch
diff options
context:
space:
mode:
authorLi Q <li66@21cn.com>2019-07-13 14:11:58 -0300
committerSören Tempel <soeren+git@soeren-tempel.net>2019-07-17 12:48:11 +0200
commit6aadc57ae091f6fb0adb24cdf7f23d04f0503545 (patch)
treee1e7d9bd76cf789f2b872ce78bcb444e9faa41de /community/firefox-esr/fix-musl.patch
parent6f7f26dac17d4027ca00a7181310699405320e23 (diff)
downloadaports-6aadc57ae091f6fb0adb24cdf7f23d04f0503545.tar.bz2
aports-6aadc57ae091f6fb0adb24cdf7f23d04f0503545.tar.xz
community/firefox-esr: upgrade to 68.0
See https://www.mozilla.org/en-US/security/advisories/mfsa2019-22/
Diffstat (limited to 'community/firefox-esr/fix-musl.patch')
-rw-r--r--community/firefox-esr/fix-musl.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/community/firefox-esr/fix-musl.patch b/community/firefox-esr/fix-musl.patch
new file mode 100644
index 0000000000..996a45f130
--- /dev/null
+++ b/community/firefox-esr/fix-musl.patch
@@ -0,0 +1,11 @@
+--- a/tools/profiler/core/platform-linux-android.cpp 2019-07-09 22:58:30.039475686 +0200
++++ b/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());