1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
From f3aed0ce236fb3f3eb6bbe89cbe20051ac310c48 Mon Sep 17 00:00:00 2001
From: Stelios Tsampas <loathingkernel@gmail.com>
Date: Fri, 4 Apr 2025 15:00:07 +0300
Subject: [PATCH] build: sanitize environment by disabling esync/fsync and
winex11.drv/winewayland.drv
---
default_pfx.py | 3 +++
make/rules-common.mk | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/default_pfx.py b/default_pfx.py
index e59a51ca..a1e2f197 100755
--- a/default_pfx.py
+++ b/default_pfx.py
@@ -127,6 +127,9 @@ def make_default_pfx(default_pfx_dir, dist_dir):
local_env["WINEPREFIX"] = default_pfx_dir
local_env["WINEDEBUG"] = "-all"
local_env["WINEDLLPATH"] = dll_path
+ local_env["WINEDLLOVERRIDES"] = "winex11.drv,winewayland.drv=d;winemenubuilder=d;"
+ local_env["WINEESYNC"] = "0"
+ local_env["WINEFSYNC"] = "0"
runtime_args = []
subprocess.run(runtime_args + ["/bin/bash", "-c",
diff --git a/make/rules-common.mk b/make/rules-common.mk
index 318b4e0f..f0f66349 100644
--- a/make/rules-common.mk
+++ b/make/rules-common.mk
@@ -116,7 +116,7 @@ $(2)_LIBFLAGS$(3) = $$(foreach d,$$($(2)_DEPS$(3)),-L$$($$(d)_LIBDIR$(3))) \
$(2)_ENV$(3) = \
WINEDEBUG="-all" \
- WINEPREFIX="$$(OBJ)/pfx-wine$(3)" \
+ WINEPREFIX="$$(OBJ)/pfx-wine$(3)" WINEESYNC="0" WINEFSYNC="0" \
WINEDLLOVERRIDES="winex11.drv,winewayland.drv=d;winemenubuilder=d;" \
CARGO_TARGET_$$(call toupper,$$(CARGO_TARGET_$(3)))_LINKER="$$(TARGET_$(4)$(3))-gcc" \
CARGO_TARGET_$$(call toupper,$$(CARGO_TARGET_$(3)))_RUSTFLAGS="$$(RUSTFLAGS)" \
--
2.49.0
|