Merge pull request #7507 from ToKe79/wl/libxkbcommon-dep-2

libxkbcommon: add dependency for wayland display server
This commit is contained in:
Frank Hartung 2023-02-13 23:25:26 +01:00 committed by GitHub
commit a6d9d93e86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +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_DEPENDS_TARGET+=" wayland wayland-protocols"
PKG_MESON_OPTS_TARGET+=" -Denable-x11=false \
-Denable-wayland=true"
else