vituperative / i2pchat

Secure, anonymous peer-to-peer chat
https://vituperative.github.io/i2pchat/
GNU General Public License v2.0
24 stars 7 forks source link

Compilation on Ubuntu Jammy Jellyfish 22.04 #29

Closed AmyMoriyama closed 2 years ago

AmyMoriyama commented 2 years ago

I'll make this short and sweet.

qt5-default is no longer in the repos, so, this has to be done to compile.

Instead of : sudo apt-get install -y devscripts build-essential lintian dh-make autoconf qt5-qmake qt5-default libqt5multimedia5 qtmultimedia5-dev libqt5svg5-dev

It should be: sudo apt-get install -y devscripts build-essential lintian dh-make autoconf libqt5multimedia5 qtmultimedia5-dev libqt5svg5-dev qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools

Instead of: qmake-qt5 I2PChat.pro "CONFIG += release"

It should be: qmake I2PChat.pro "CONFIG += release"

The rest still works.

vituperative commented 2 years ago

Thanks for the heads up. README.md updated accordingly in commit 7412f0e.