summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2023-11-23 20:46:26 +0100
committerJoel Klinghed <the_jk@spawned.biz>2023-11-23 20:46:26 +0100
commit4d10bf26b8492e2cee2948b7689f1ef52ef296db (patch)
treefe6bff29e5c5f052475160e4c30d83b8804d9201
parent54530472a2073e1f979358646ca2cfc8e6b911a5 (diff)
xcb-xrm: Reduce min version
We're only using API 1.0 methods, no reason to demand newest from upstream.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 12495da..499de00 100644
--- a/meson.build
+++ b/meson.build
@@ -31,7 +31,7 @@ xcb_dep = [dependency('xcb', version: '>= 1.14'),
dependency('xcb-keysyms', version: '>= 0.4.0'),
dependency('xkbcommon-x11', version: '>= 1.0.3')]
-xcb_xrm_dep = dependency('xcb-xrm', version: '>= 1.3', required: false)
+xcb_xrm_dep = dependency('xcb-xrm', version: '>= 1.0', required: false)
dbus_dep = dependency('sdbus-c++', version: '>= 0.8.3')