aboutsummaryrefslogtreecommitdiffstats
path: root/testing/firefox/fix-musl.patch
diff options
context:
space:
mode:
authorIvan Delalande <colona@ycc.fr>2019-09-30 20:55:39 -0700
committerRasmus Thomsen <oss@cogitri.dev>2019-10-03 10:42:07 +0200
commitac320fc40b52add5d4c39dbf471be43ebcf76fd2 (patch)
tree20d6f77cab20e354d4d0657dc4e5303ae58e8ac6 /testing/firefox/fix-musl.patch
parent4a50f6d7f12eac7518fa62c2c615067b8486bf55 (diff)
downloadaports-ac320fc40b52add5d4c39dbf471be43ebcf76fd2.tar.bz2
aports-ac320fc40b52add5d4c39dbf471be43ebcf76fd2.tar.xz
testing/firefox: upgrade to 69.0.1, enable build on aarch64
Not too familiar with rust, Void's version of fix-third_party.patch might be cleaner or more portable: https://github.com/void-linux/void-packages/blob/3a3d0ef7811ac0c200dd4caba108fa46519dc239/srcpkgs/firefox/patches/initialize_sched_param.patch Also this change updates the checksum of rt_linux.rs used by cargo for validation, whereas they disable checksumming entirely: https://github.com/void-linux/void-packages/blob/3a3d0ef7811ac0c200dd4caba108fa46519dc239/srcpkgs/firefox/template#L42
Diffstat (limited to 'testing/firefox/fix-musl.patch')
-rw-r--r--testing/firefox/fix-musl.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/testing/firefox/fix-musl.patch b/testing/firefox/fix-musl.patch
deleted file mode 100644
index 996a45f130..0000000000
--- a/testing/firefox/fix-musl.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- 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());