
The portal login window uses WebKit, which is a security-sensitive component that not all vendors want to support. Support that case with a build option, and update the captive portal handler to use the user's default browser if the portal-helper is disabled. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3408>
19 lines
489 B
Meson
19 lines
489 B
Meson
subdir('misc')
|
|
subdir('dbusServices')
|
|
|
|
js_resources = gnome.compile_resources(
|
|
'js-resources', 'js-resources.gresource.xml',
|
|
source_dir: ['.', meson.current_build_dir()],
|
|
c_name: 'shell_js_resources',
|
|
dependencies: [config_js]
|
|
)
|
|
|
|
if have_portal_helper
|
|
portal_resources = gnome.compile_resources(
|
|
'portal-resources', 'portal-resources.gresource.xml',
|
|
source_dir: ['.', meson.current_build_dir()],
|
|
c_name: 'portal_js_resources',
|
|
dependencies: [config_js]
|
|
)
|
|
endif
|