-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(x11/firefox): fix Segmentation fault in the command "firefox -hea…
…dless" Fixes #22286
- Loading branch information
1 parent
040fb38
commit f2f7d30
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
WIP PATCH: currently breaks this command, future updates needed! | ||
"firefox & sleep 5 && firefox google.com" | ||
|
||
Fixes a crash in the command "firefox -headless", | ||
as described here https://github.com/termux/termux-packages/issues/22286 | ||
--- a/toolkit/moz.configure | ||
+++ b/toolkit/moz.configure | ||
@@ -2714,8 +2714,8 @@ def has_remote(toolkit): | ||
return True | ||
|
||
|
||
-set_config("MOZ_HAS_REMOTE", has_remote) | ||
-set_define("MOZ_HAS_REMOTE", has_remote) | ||
+#set_config("MOZ_HAS_REMOTE", has_remote) | ||
+#set_define("MOZ_HAS_REMOTE", has_remote) | ||
|
||
# RLBox Library Sandboxing wasm support | ||
# ============================================================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters