Merge pull request #7502 from ToKe79/wl/libxkbcommon-dep

libxkbcommon: add dependency for wayland display server
This commit is contained in:
Frank Hartung 2023-02-11 19:14:33 +01:00 committed by GitHub
commit 8c7d1c47ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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