Merge pull request #4224 from CvH/10.0/libx-fix

libxkbcommon: fix Generic build
This commit is contained in:
MilhouseVH 2020-03-05 23:36:34 +00:00 committed by GitHub
commit a460eb602c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,3 +23,9 @@ else
PKG_MESON_OPTS_TARGET+=" -Denable-x11=false \
-Denable-wayland=false"
fi
pre_configure_target() {
if [ "${DISPLAYSERVER}" = "x11" ]; then
TARGET_LDFLAGS="$LDFLAGS -lXau -lxcb"
fi
}