mirror of
https://github.com/termux/termux-packages.git
synced 2025-10-23 08:14:15 +00:00
- Fixes https://github.com/termux/termux-packages/issues/26508 - Add `0029-force-unset-cflags-for-rust-hostbuild.patch`, which appears to correctly fix error `glslopt@0.1.11: clang: error: unsupported option '-mfpu=' for target 'x86_64-unknown-linux-gnu'` when targeting 32-bit
24 lines
609 B
Diff
24 lines
609 B
Diff
Thunderbird-only patch
|
|
|
|
--- a/comm/chat/modules/CLib.sys.mjs
|
|
+++ b/comm/chat/modules/CLib.sys.mjs
|
|
@@ -39,7 +39,7 @@
|
|
break;
|
|
case "linux":
|
|
libcAbi = ctypes.default_abi;
|
|
- libcPath = "libc.so.6";
|
|
+ libcPath = "libc.so";
|
|
break;
|
|
default:
|
|
throw new Error("Unknown OS");
|
|
--- a/comm/mail/modules/DNS.worker.mjs
|
|
+++ b/comm/mail/modules/DNS.worker.mjs
|
|
@@ -41,6 +41,7 @@
|
|
{ name: "resolv.9", suffix: "" },
|
|
{ name: "resolv", suffix: ".2" },
|
|
{ name: "resolv", suffix: "" },
|
|
+ { name: "c", suffix: "" },
|
|
];
|
|
}
|
|
const tried = [];
|