From c6f4bc29984537706189a786a9dbc2846e9b6d16 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Sat, 15 Nov 2025 08:35:20 -0700 Subject: [PATCH] dconf: patch for redox --- recipes/wip/libs/gtk/dconf/recipe.toml | 1 + recipes/wip/libs/gtk/dconf/redox.patch | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 recipes/wip/libs/gtk/dconf/redox.patch diff --git a/recipes/wip/libs/gtk/dconf/recipe.toml b/recipes/wip/libs/gtk/dconf/recipe.toml index 1cefa704b..40fcd4697 100644 --- a/recipes/wip/libs/gtk/dconf/recipe.toml +++ b/recipes/wip/libs/gtk/dconf/recipe.toml @@ -1,6 +1,7 @@ [source] tar = "https://download.gnome.org/sources/dconf/0.49/dconf-0.49.0.tar.xz" blake3 = "41ee23bdab3208f7a08efa134a481c852874dc5846433a665c5a5149511a7659" +patches = ["redox.patch"] [build] dependencies = [ diff --git a/recipes/wip/libs/gtk/dconf/redox.patch b/recipes/wip/libs/gtk/dconf/redox.patch new file mode 100644 index 000000000..4fe5cfc5b --- /dev/null +++ b/recipes/wip/libs/gtk/dconf/redox.patch @@ -0,0 +1,12 @@ +diff -ruwN source-old/shm/dconf-shm.c source/shm/dconf-shm.c +--- source-old/shm/dconf-shm.c 2025-09-15 09:53:57.000000000 -0600 ++++ source/shm/dconf-shm.c 2025-11-15 08:08:47.412198178 -0700 +@@ -148,7 +148,7 @@ + + close (fd); + +- unlink (filename); ++ //TODO: redoxfs bug: unlink (filename); + } + + g_free (filename);