aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/gtk/main.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/ui/gtk/main.c b/ui/gtk/main.c
index 1a4e53383d..efd56f7748 100644
--- a/ui/gtk/main.c
+++ b/ui/gtk/main.c
@@ -44,10 +44,6 @@
#include "wsutil/wsgetopt.h"
#endif
-#ifdef HAVE_LIBZ
-#include <zlib.h> /* to get the libz version number */
-#endif
-
#ifdef HAVE_EXTCAP
#include <extcap.h>
#endif
@@ -1969,19 +1965,6 @@ get_wireshark_gtk_compiled_info(GString *str)
/* Capture libraries */
g_string_append(str, ", ");
get_compiled_caplibs_version(str);
-
- /* LIBZ */
- g_string_append(str, ", ");
-#ifdef HAVE_LIBZ
- g_string_append(str, "with libz ");
-#ifdef ZLIB_VERSION
- g_string_append(str, ZLIB_VERSION);
-#else /* ZLIB_VERSION */
- g_string_append(str, "(version unknown)");
-#endif /* ZLIB_VERSION */
-#else /* HAVE_LIBZ */
- g_string_append(str, "without libz");
-#endif /* HAVE_LIBZ */
}
static void
@@ -2018,11 +2001,6 @@ get_wireshark_runtime_info(GString *str)
get_runtime_caplibs_version(str);
#endif
- /* zlib */
-#if defined(HAVE_LIBZ) && !defined(_WIN32)
- g_string_append_printf(str, ", with libz %s", zlibVersion());
-#endif
-
/* stuff used by libwireshark */
epan_get_runtime_version_info(str);