libxkbcommon: add dependency for wayland display server

This commit is contained in:
Tomáš Kelemen (vudiq) 2023-02-11 18:31:40 +01:00
parent ba25cb4915
commit 5841c25029
No known key found for this signature in database
GPG Key ID: 5CE55E600E0B3B22

View File

@ -17,6 +17,7 @@ if [ "${DISPLAYSERVER}" = "x11" ]; then
PKG_MESON_OPTS_TARGET+=" -Denable-x11=true \
-Denable-wayland=false"
elif [ "${DISPLAYSERVER}" = "wl" ]; then
PKG_DEPENDS_TARGET+=" wayland-protocols"
PKG_MESON_OPTS_TARGET+=" -Denable-x11=false \
-Denable-wayland=true"
else