![Florian Müllner](/assets/img/avatar_default.png)
We started to support Soup3 in GNOME 41, and used it by default since GNOME 43. This should be enough time for distros to adapt, so GNOME 45 looks like a good moment to drop the old Soup2 support. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2776>
15 lines
470 B
Meson
15 lines
470 B
Meson
jsconf = configuration_data()
|
|
jsconf.set('PACKAGE_NAME', meson.project_name())
|
|
jsconf.set('PACKAGE_VERSION', meson.project_version())
|
|
jsconf.set('GETTEXT_PACKAGE', meson.project_name())
|
|
jsconf.set('LIBMUTTER_API_VERSION', mutter_api_version)
|
|
jsconf.set10('HAVE_NETWORKMANAGER', have_networkmanager)
|
|
jsconf.set('datadir', datadir)
|
|
jsconf.set('libexecdir', libexecdir)
|
|
|
|
config_js = configure_file(
|
|
input: 'config.js.in',
|
|
output: 'config.js',
|
|
configuration: jsconf
|
|
)
|