summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2016-10-19 12:27:11 +0200
committerAnders Broman <a.broman58@gmail.com>2016-10-20 05:03:07 +0000
commit9c3d81adde2d901a18fb0dc5a5dc2220f76cd920 (patch)
treecebcb733c078e2fce37acdecbd99713d71629dc0 /doc
parentd38ed8e55f7df9b34b9a7859ff54dde726f2feb0 (diff)
downloadwireshark-9c3d81adde2d901a18fb0dc5a5dc2220f76cd920.tar.gz
Officially require Qt 4.8 or newer
Since v2.3.0rc0-1002-g1cd2255, Qt 4.8 became mandatory, reflect this in the version requirements. This will not affect a lot of distributions (RHEL and SLES only had Qt 4.6). For a more complete list of supported platforms, see https://wiki.wireshark.org/Development/Support_library_version_tracking While at it, correct some other minimum versions in documentation. Change-Id: I11f2dfba72c75429f6838404a81ed3b3dc302d5f Reviewed-on: https://code.wireshark.org/review/18314 Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com> Petri-Dish: Anders Broman <a.broman58@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/README.developer9
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/README.developer b/doc/README.developer
index 76adcb7f0f..774e41e973 100644
--- a/doc/README.developer
+++ b/doc/README.developer
@@ -387,11 +387,10 @@ tmpnam is insecure and should not be used any more. Wireshark brings its
own mkstemp implementation for use on platforms that lack mkstemp.
Note: mkstemp does not accept NULL as a parameter.
-Wireshark supports platforms with GLib 2.16[.x]/GTK+ 2.12[.x]/Qt 4.7[.x] or
-newer. If a Glib/GTK+/Qt mechanism is available only in Glib/GTK+/Qt
-versions newer than 2.16/2.12/4.7 then use "#if GLIB_CHECK_VERSION(...)",
-"#if GTK_CHECK_VERSION(...)" or "#if QT_VERSION_CHECK(...)" to conditionally
-compile code using that mechanism.
+Wireshark supports platforms with GLib 2.22[.x]/GTK+ 2.12[.x]/Qt 4.8[.x] or
+newer. If a Glib/GTK+/Qt mechanism is available only in newer Glib/GTK+/Qt
+versions then use "#if GLIB_CHECK_VERSION(...)", "#if GTK_CHECK_VERSION(...)" or
+"#if QT_VERSION_CHECK(...)" to conditionally compile code using that mechanism.
When different code must be used on UN*X and Win32, use a #if or #ifdef
that tests _WIN32, not WIN32. Try to write code portably whenever