Update to drop GTK3 dependency
There's a few things going on here, that unfortunately must happen in lockstep: - The gnome-desktop-3.0 dependency gets replaced by gnome-desktop-4 and gnome-bg-4. The code in ui/background.js required minor updates. - The libnma dependency gets replaced by a libnma4 dependency. The code in misc/modemManager.js required minor updates. - The gtk3 dependency is torn down everywhere but tests. Some missing GdkPixbuf dependencies had to be added to compensate for its lack. - gtk_init_check() is no longer called As a result, we replace a hard gtk3 dependency with a soft gtk4 run-time linking one, only added indirectly through gnome-bg-4 and libnma4. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2655>
This commit is contained in:

committed by
Marge Bot

parent
1a06d93e95
commit
656efd33af
@ -9,21 +9,20 @@ imports.gi.versions.Atspi = '2.0';
|
||||
imports.gi.versions.Clutter = Config.LIBMUTTER_API_VERSION;
|
||||
imports.gi.versions.Cogl = Config.LIBMUTTER_API_VERSION;
|
||||
imports.gi.versions.Gcr = '4';
|
||||
imports.gi.versions.Gdk = '3.0';
|
||||
imports.gi.versions.Gdm = '1.0';
|
||||
imports.gi.versions.Geoclue = '2.0';
|
||||
imports.gi.versions.Gio = '2.0';
|
||||
imports.gi.versions.GDesktopEnums = '3.0';
|
||||
imports.gi.versions.GdkPixbuf = '2.0';
|
||||
imports.gi.versions.GnomeBluetooth = '3.0';
|
||||
imports.gi.versions.GnomeDesktop = '3.0';
|
||||
imports.gi.versions.GnomeBG = '4.0';
|
||||
imports.gi.versions.GnomeDesktop = '4.0';
|
||||
imports.gi.versions.Graphene = '1.0';
|
||||
imports.gi.versions.Gtk = '3.0';
|
||||
imports.gi.versions.GWeather = '4.0';
|
||||
imports.gi.versions.IBus = '1.0';
|
||||
imports.gi.versions.Malcontent = '0';
|
||||
imports.gi.versions.NM = '1.0';
|
||||
imports.gi.versions.NMA = '1.0';
|
||||
imports.gi.versions.NMA4 = '1.0';
|
||||
imports.gi.versions.Pango = '1.0';
|
||||
imports.gi.versions.Polkit = '1.0';
|
||||
imports.gi.versions.PolkitAgent = '1.0';
|
||||
|
Reference in New Issue
Block a user