From 42106c9688a41f2bb8a1ff4171a1e67525e5eb29 Mon Sep 17 00:00:00 2001 From: Jim Young Date: Sun, 6 Feb 2022 10:17:25 +0000 Subject: [PATCH] Docs: Accurately describe our minimum GLib and where to get it --- INSTALL | 4 ++-- doc/README.developer | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/INSTALL b/INSTALL index f0bcc43575..3ec5e7308a 100644 --- a/INSTALL +++ b/INSTALL @@ -16,10 +16,10 @@ README.windows for those instructions. installed. Then try running 'pkg-config Qt5Widgets --modversion' to see if you have Qt installed. Wireshark requires Qt 5.3 or later, but the most recent LTS release is strongly recommended. It needs - version 2.32.0 or above of GLib. If you need to install or + version 2.38.0 or above of GLib. If you need to install or re-install GLIB, you can find the packages at: - https://www.gtk.org + https://download.gnome.org/sources/glib/ You can find Qt at: diff --git a/doc/README.developer b/doc/README.developer index f24590c4bb..f6a76ddac8 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.32.0 and Qt 5.3.0 or newer. If you require a mechanism +particular GLib 2.38.0 and Qt 5.3.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