mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-06-13 14:33:17 -04:00
meson: require xkbcommon >= 1.6.0
We use XKB_KEYSYM_MAX, which was added in 1.6.0. In other words, this requirement isn't really new, but now we've formalized it in meson.build. Closes #2379
This commit is contained in:
parent
4bf60d0fbc
commit
8038adedf0
2 changed files with 5 additions and 1 deletions
|
|
@ -82,10 +82,14 @@
|
|||
* DECCRA not clamping or verifying the destination rectangle
|
||||
([#2352][2352]).
|
||||
* Empty selection clearing the clipboard ([#2327][2327]).
|
||||
* Require xkbcommon >= 1.6.0. This has been the case for a while, due
|
||||
to our use of `XKB_KEYSYM_MAX`. Now it is formalized in
|
||||
`meson.build` ([#2379][2379]).
|
||||
|
||||
[2353]: https://codeberg.org/dnkl/foot/issues/2353
|
||||
[2352]: https://codeberg.org/dnkl/foot/issues/2352
|
||||
[2327]: https://codeberg.org/dnkl/foot/issues/2327
|
||||
[2379]: https://codeberg.org/dnkl/foot/issues/2379
|
||||
|
||||
|
||||
### Security
|
||||
|
|
|
|||
|
|
@ -151,7 +151,7 @@ wayland_protocols = dependency('wayland-protocols', version: '>=1.41',
|
|||
default_options: ['tests=false'])
|
||||
wayland_client = dependency('wayland-client')
|
||||
wayland_cursor = dependency('wayland-cursor')
|
||||
xkb = dependency('xkbcommon', version: '>=1.0.0')
|
||||
xkb = dependency('xkbcommon', version: '>=1.6.0')
|
||||
fontconfig = dependency('fontconfig')
|
||||
utf8proc = dependency('libutf8proc', required: get_option('grapheme-clustering'))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue