mirror of
https://github.com/termux/termux-packages.git
synced 2025-07-23 16:41:42 +00:00
- Fixes #24070 - makes the `mozconfig.cfg`, `build.sh` and patches of `thunderbird` very similar to `firefox`, except for places where `thunderbird` is different - `disable-systray-x86_64.patch`: fixes the build of `thunderbird` 136.0.1 for x86_64 Termux specifically. has been tested at runtime on a bare metal 64-bit Android-x86 device, and behaves as expected (uniform behavior with other architectures of Termux `thunderbird` 136.0.1) - `toolbar-based-custom-compose-window-width-for-ralfwerner.patch`: hardcoded custom dimensions of the edit window formatting toolbar to provide a workaround for edit window minimum text wrapping width high-dpi-scaling low-resolution situations in HTML mode while preserving the formatting toolbar functionality - `icu-22132.patch`: fixes a bug in `libicu` that has been happening for a long time, which causes these features of `thunderbird` to begin functioning: - Search Bar - Address Book - Customize Toolbars - Calendar - Tasks - Chat - Settings Button - Hamburger Button
18 lines
577 B
Diff
18 lines
577 B
Diff
Fix SIGBUS Firefox error on Arm. Also apply to other arches just in case.
|
|
|
|
https://github.com/termux/termux-packages/issues/15901
|
|
https://github.com/mozilla/gecko-dev/commit/d7ba2cef0e9b74addedda4bc7f57daf10599a5dc
|
|
https://github.com/google/cityhash/blob/master/src/city.cc
|
|
|
|
--- a/other-licenses/nsis/Contrib/CityHash/cityhash/city.cpp
|
|
+++ b/other-licenses/nsis/Contrib/CityHash/cityhash/city.cpp
|
|
@@ -33,7 +33,7 @@
|
|
|
|
using namespace std;
|
|
|
|
-#if __sparc__
|
|
+#if __sparc__ || __TERMUX__
|
|
#include <string.h>
|
|
static inline uint64 UNALIGNED_LOAD64(const char *p) {
|
|
uint64 val;
|