This is an automated email from the git hooks/post-receive script.
git pushed a commit to reference refs/pull/145/head
in repository enlightenment.
View the commit online.
commit 259d20a50d9df3243ca985c0f5b22ea63d05798e
Author: Cedric BAIL <[email protected]>
AuthorDate: Fri Aug 7 23:13:50 2026 -0600
build - require wayland-protocols >= 1.32
The pin was >= 1.12, which predates every protocol the browser-support
work needs to add: xdg-activation (1.21), xdg-decoration (1.17),
xdg-output (1.17), cursor-shape (1.32), fractional-scale (1.31).
1.32 is the floor that covers all of them, so bump once here rather than
have each protocol raise it a little further.
Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
Claude-Session: https://claude.ai/code/session_01FtoiXoSKUmZb6Aix6U3GZS
---
meson.build | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/meson.build b/meson.build
index 2365c61e4..d141b2865 100644
--- a/meson.build
+++ b/meson.build
@@ -318,7 +318,7 @@ dep_elput = dependency('elput' , required: false)
dep_wayland = []
if get_option('wl') == true
- wayland_protocols = dependency('wayland-protocols', version: '>= 1.12')
+ wayland_protocols = dependency('wayland-protocols', version: '>= 1.32')
dir_wayland_protocols = wayland_protocols.get_pkgconfig_variable('pkgdatadir')
wayland_version = '>= 1.11.0'
dep_wayland = [ dependency('ecore-wl2'),
@@ -336,7 +336,7 @@ if get_option('wl') == true
requires_drm = 'ecore-drm2'
dep_wayland += dep_ecore_drm2
endif
- requires_wayland = ' '.join([ 'wayland-protocols >= 1.12',
+ requires_wayland = ' '.join([ 'wayland-protocols >= 1.32',
'ecore-wl2',
'efl-canvas-wl',
requires_drm,
@@ -399,6 +399,10 @@ subdir('src/bin')
subdir('src/modules')
+if get_option('tests') == true
+ subdir('src/tests')
+endif
+
subdir('data/backgrounds')
subdir('data/config')
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.