summaryrefslogtreecommitdiff
path: root/debian/patches/Build-with-webkit2gtk-4.1.patch
blob: 4f3d78be4c73f482a739ea11dd7e2a205e3b4b08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From: Jeremy Bicha <jeremy.bicha@canonical.com>
Date: Wed, 18 May 2022 16:00:02 -0400
Subject: Build with webkit2gtk 4.1

webkit2gtk 4.1 is gtk3 + libsoup3

https://gitlab.gnome.org/GNOME/zenity/-/issues/46
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index 6f28790..032031b 100644
--- a/meson.build
+++ b/meson.build
@@ -70,7 +70,7 @@ if get_option('libnotify')
   endif
 endif
 
-webkitgtk = dependency('webkit2gtk-4.0', version: '>= 2.8.1', required: false)
+webkitgtk = dependency('webkit2gtk-4.1', version: '>= 2.8.1', required: false)
 if get_option('webkitgtk')
   if webkitgtk.found()
     zenity_conf.set('HAVE_WEBKITGTK', true)
bgstack15