Build for WebKitGTK 2.39.5

This commit is contained in:
Michael Catanzaro 2023-01-21 10:27:37 -06:00
parent 9917219f9a
commit cc62fc79d6
2 changed files with 30 additions and 0 deletions

View File

@ -18,7 +18,9 @@ Source1: vendor.conf
# https://gitlab.gnome.org/GNOME/gnome-initial-setup/-/merge_requests/164 # https://gitlab.gnome.org/GNOME/gnome-initial-setup/-/merge_requests/164
# https://gitlab.gnome.org/GNOME/gnome-initial-setup/-/merge_requests/165 # https://gitlab.gnome.org/GNOME/gnome-initial-setup/-/merge_requests/165
# https://gitlab.gnome.org/GNOME/gnome-initial-setup/-/merge_requests/177
Patch0: webkitgtk-6.0.patch Patch0: webkitgtk-6.0.patch
Patch1: webkitgtk-2.39.5.patch
BuildRequires: desktop-file-utils BuildRequires: desktop-file-utils
BuildRequires: gcc BuildRequires: gcc

28
webkitgtk-2.39.5.patch Normal file
View File

@ -0,0 +1,28 @@
From 1a8f9ecfceb2e3106910b7bf7987f0fc75886670 Mon Sep 17 00:00:00 2001
From: Michael Catanzaro <mcatanzaro@redhat.com>
Date: Thu, 19 Jan 2023 20:07:40 -0600
Subject: [PATCH] Update for removal of WebKitGTK sandbox API
WebKitGTK 2.39.5 contains an ABI break. The sandbox is now mandatory, so
the API to enable/disable it is gone.
---
gnome-initial-setup/gis-driver.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnome-initial-setup/gis-driver.c b/gnome-initial-setup/gis-driver.c
index 1ddf3c6a..3d48629e 100644
--- a/gnome-initial-setup/gis-driver.c
+++ b/gnome-initial-setup/gis-driver.c
@@ -788,7 +788,9 @@ gis_driver_startup (GApplication *app)
G_APPLICATION_CLASS (gis_driver_parent_class)->startup (app);
+#if !WEBKIT_CHECK_VERSION(2, 39, 5)
webkit_web_context_set_sandbox_enabled (context, TRUE);
+#endif
if (driver->mode == GIS_DRIVER_MODE_NEW_USER)
connect_to_gdm (driver);
--
GitLab