qt-base: fix xcb plugin not being built (#42070)

Qt requires quite a few X11/xcb dependencies to be able to compile the
xcb platform plugin. See https://doc.qt.io/qt-6/linux-requirements.html
This commit is contained in:
Michael Kuhn 2024-01-16 09:48:01 +01:00 committed by GitHub
parent 1225bd7a44
commit 70ec14d930
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -153,6 +153,13 @@ class QtBase(QtPackage):
depends_on("libxkbcommon")
depends_on("libxcb@1.13:") # requires xinput
depends_on("libxrender")
depends_on("libx11")
depends_on("xcb-util")
depends_on("xcb-util-cursor")
depends_on("xcb-util-image")
depends_on("xcb-util-keysyms")
depends_on("xcb-util-renderutil")
depends_on("xcb-util-wm")
with when("+network"):
depends_on("openssl")