diff options
author | laanwj <126646+laanwj@users.noreply.github.com> | 2024-03-29 09:25:50 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2024-04-01 16:02:23 +0200 |
commit | c4da61b323ce5215bee9296b1ef12f1ba1eca9f6 (patch) | |
tree | 4238c9a1a581f1f00969bddf1b9d012d66df3406 /doc | |
parent | b3cd95249546e372f07a682f0bf7c6167b229c2a (diff) |
doc: Suggest installing dev packages for debian/ubuntu qt5 build
Pretty much all library packages were renamed in the 64-bit time_t
migration to add `t64` (even on 64-bit platforms).
Instead of complicating the doc with conditional package names, suggest
installing the `-dev` packages which still have the same name, and
besides that, are the right way to go about it as they contain the
"user facing" C++ headers needed to build against Qt5.
For Fedora, devel packages are already suggested.
This affects Ubuntu 24.04 and Debian Testing.
Github-Pull: #29764
Rebased-From: a3c6a13cb23999fa70c428f1229acbf1b3883f11
Diffstat (limited to 'doc')
-rw-r--r-- | doc/build-unix.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build-unix.md b/doc/build-unix.md index bf367fc421..94404a6d0d 100644 --- a/doc/build-unix.md +++ b/doc/build-unix.md @@ -81,7 +81,7 @@ To build without GUI pass `--without-gui`. To build with Qt 5 you need the following: - sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools + sudo apt-get install qtbase5-dev qttools5-dev qttools5-dev-tools Additionally, to support Wayland protocol for modern desktop environments: |