aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2018-04-05 18:00:16 -0700
committerAnders Broman <a.broman58@gmail.com>2018-04-06 03:11:52 +0000
commit0cb3176ab770c6a5f69ffc5a5cd8889a3d5b23a0 (patch)
treeae4b2e16b94120dedf7170fb2dd7cd4e8a69ed7a /doc
parent5fd4659164536a494480b4717e6f6b5ae530c119 (diff)
Remove some references to Qt4.
Change-Id: I50f5abafb8adf18a5407427f7feb260301df45cc Reviewed-on: https://code.wireshark.org/review/26771 Reviewed-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/README.developer13
1 files changed, 5 insertions, 8 deletions
diff --git a/doc/README.developer b/doc/README.developer
index 6d2872a5cd..42f2d0e31a 100644
--- a/doc/README.developer
+++ b/doc/README.developer
@@ -409,14 +409,11 @@ own mkstemp implementation for use on platforms that lack mkstemp.
Note: mkstemp does not accept NULL as a parameter.
Wireshark requires mininum versions of each of the libraries it uses, in
-particular GLib 2.22.0, Qt 4.8.0, and GTK+ 2.12.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(...)", "#if QT_VERSION_CHECK(...)", and "#if
-GTK_CHECK_VERSION(...)" to conditionally compile code using that
-mechanism. If you're using GTK_CHECK_VERSION be aware that GTK+ will be
-removed in a future release. Adding new features to the GTK+ UI is
-discouraged.
+particular GLib 2.32.0 and Qt 5.2.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
+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