aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/gtk/main.c2
-rw-r--r--wireshark-qt.cpp2
2 files changed, 4 insertions, 0 deletions
diff --git a/ui/gtk/main.c b/ui/gtk/main.c
index e87816e384..854d2cc783 100644
--- a/ui/gtk/main.c
+++ b/ui/gtk/main.c
@@ -1851,12 +1851,14 @@ get_gui_compiled_info(GString *str)
g_string_append(str, "without PortAudio");
#endif /* HAVE_LIBPORTAUDIO */
+#ifdef _WIN32
g_string_append(str, ", ");
#ifdef HAVE_AIRPCAP
get_compiled_airpcap_version(str);
#else
g_string_append(str, "without AirPcap");
#endif
+#endif /* _WIN32 */
codec_get_compiled_version_info(str);
}
diff --git a/wireshark-qt.cpp b/wireshark-qt.cpp
index c48fa1d5d1..e6ef762854 100644
--- a/wireshark-qt.cpp
+++ b/wireshark-qt.cpp
@@ -236,12 +236,14 @@ get_gui_compiled_info(GString *str)
g_string_append(str, "without QtMultimedia");
#endif
+#ifdef _WIN32
g_string_append(str, ", ");
#ifdef HAVE_AIRPCAP
get_compiled_airpcap_version(str);
#else
g_string_append(str, "without AirPcap");
#endif
+#endif /* _WIN32 */
codec_get_compiled_version_info(str);
}