I hit this problem today, it's still not fixed as of now for someone getting started. It took some digging, but I just got past it.
To finish ./configure on today's master branch, the extra install I needed on ubuntu 20 was this:
Code: Select all
sudo apt install libxcb-shm0-dev libxcb-xv0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-composite0-dev libx11-xcb-dev qtquickcontrols2-5-dev qtdeclarative5-dev
.
After that, it could configure and build, but still would not display the gui properly due to qt errors at runtime, so in order to run it, I also had to install some more qt things:
Code: Select all
sudo apt install qml-module-qtquick-controls qml-module-qtqml-models2
HTH.
Acks: tho none of them quite had everything I needed, this was ultimately found with help from several other sources, so my thanks to their authors for these key breadcrumbs:
-
https://github.com/void-linux/void-pack ... -599040082
-
https://packages.ubuntu.com/bionic/qtdeclarative5-dev
-
https://www.linux.org/threads/how-do-i- ... post-70456
-
https://askubuntu.com/a/450990/640371
-
https://stackoverflow.com/a/63075609/3427357