mirror of
https://github.com/termux/termux-packages.git
synced 2025-07-24 15:24:52 +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
17 lines
578 B
Diff
17 lines
578 B
Diff
firefox does not need this yet because Wayland is disabled in firefox
|
|
because of an issue that does not seem reproducible in Thunderbird
|
|
https://github.com/termux/termux-packages/pull/19441#issuecomment-2000151761
|
|
|
|
--- a/third_party/wayland-proxy/wayland-proxy.cpp
|
|
+++ b/third_party/wayland-proxy/wayland-proxy.cpp
|
|
@@ -739,7 +739,9 @@
|
|
if (mThreadRunning) {
|
|
Info("thread is still running, terminating.\n");
|
|
mThreadRunning = false;
|
|
+#ifndef __TERMUX__
|
|
pthread_cancel(mThread);
|
|
+#endif
|
|
pthread_join(mThread, nullptr);
|
|
}
|
|
if (mProxyServerSocket != -1) {
|