From 536c685ea5e9a4b07a679e5cc174eeed1e412693 Mon Sep 17 00:00:00 2001 From: John Thacker Date: Thu, 28 Apr 2022 23:12:24 -0400 Subject: [PATCH] docs: Update reference to minimum versions of GLib and Qt --- INSTALL | 4 ++-- doc/README.developer | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/INSTALL b/INSTALL index 97ccb33c8f..6fd4ccea39 100644 --- a/INSTALL +++ b/INSTALL @@ -15,9 +15,9 @@ README.windows for those instructions. development packages installed. Try running 'pkg-config glib-2.0 --modversion' to see if you have GLib 2.x installed. Then try running 'pkg-config Qt5Widgets --modversion' - to see if you have Qt installed. Wireshark requires Qt 5.3 or later, + to see if you have Qt installed. Wireshark requires Qt 5.9 or later, but the most recent LTS release is strongly recommended. It needs - version 2.38.0 or above of GLib. If you need to install or + version 2.50.0 or above of GLib. If you need to install or re-install GLIB, you can find the packages at: https://download.gnome.org/sources/glib/ diff --git a/doc/README.developer b/doc/README.developer index f6a76ddac8..0377a9f0d3 100644 --- a/doc/README.developer +++ b/doc/README.developer @@ -429,7 +429,7 @@ own mkstemp implementation for use on platforms that lack mkstemp. Note: mkstemp does not accept NULL as a parameter. Wireshark requires minimum versions of each of the libraries it uses, in -particular GLib 2.38.0 and Qt 5.3.0 or newer. If you require a mechanism +particular GLib 2.50.0 and Qt 5.9.0 or newer. If you require a mechanism that is available only in a newer version of a library then use its version detection macros, e.g. "#if GLIB_CHECK_VERSION(...)" and "#if QT_VERSION_CHECK(...)" to conditionally compile code using that