summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Samoilov <[email protected]>2026-09-09 05:14:01 -0400
committerLuke from DC <[email protected]>2026-09-10 18:20:55 +0000
commitcf3b7962040205f799e634c5b047f32915dc329e (patch)
tree458251731605434c397c994c7a9d26630c040444
parent945e3f931266b5516133bffd1aed237ee10f29a5 (diff)
downloadmate-panel-cf3b7962040205f799e634c5b047f32915dc329e.tar.bz2
mate-panel-cf3b7962040205f799e634c5b047f32915dc329e.tar.xz
Relax libxfce4windowing version
-rw-r--r--configure.ac4
-rw-r--r--meson.build4
2 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index f252e70f..4ce9ae3f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -216,9 +216,9 @@ fi
have_xfw=no
if test "x$have_wayland" = "xyes"; then
- PKG_CHECK_MODULES(XFW, libxfce4windowing-0 >= 4.20.6, have_xfw=yes, [
+ PKG_CHECK_MODULES(XFW, libxfce4windowing-0 >= 4.20.2, have_xfw=yes, [
if test "x$enable_wayland" = "xyes"; then
- AC_MSG_ERROR([Wayland support requires libxfce4windowing-0 >= 4.20.6])
+ AC_MSG_ERROR([Wayland support requires libxfce4windowing-0 >= 4.20.2])
else
have_wayland=no
fi
diff --git a/meson.build b/meson.build
index 40b1199c..a969141e 100644
--- a/meson.build
+++ b/meson.build
@@ -205,10 +205,10 @@ wayland_deps = [
]
have_wayland = wayland_deps[0].found() and wayland_deps[1].found()
if have_wayland
- xfw_dep = dependency('libxfce4windowing-0', version: '>= 4.20.6', required: false)
+ xfw_dep = dependency('libxfce4windowing-0', version: '>= 4.20.2', required: false)
if not xfw_dep.found()
if wayland_opt.enabled()
- error('Wayland support requires libxfce4windowing-0 >= 4.20.6')
+ error('Wayland support requires libxfce4windowing-0 >= 4.20.2')
else
have_wayland = false
endif