aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.c
diff options
context:
space:
mode:
authorDavid Perry <boolean263@protonmail.com>2021-05-19 17:16:01 +0000
committerWireshark GitLab Utility <6629907-ws-gitlab-utility@users.noreply.gitlab.com>2021-05-19 17:16:01 +0000
commit32cc1c79061c683af02704048ea2aace2cb665c3 (patch)
treef78759c34f1e3c5df1bd5441c7735470cb764c01 /epan/epan.c
parenta1ba9453ef18782f1287ceae0bac058127a0f5fe (diff)
Remove use of PACKAGE_VERSION in maxminddb version
Diffstat (limited to 'epan/epan.c')
-rw-r--r--epan/epan.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/epan/epan.c b/epan/epan.c
index 83e0ae918f..06a9c788b1 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -82,10 +82,6 @@
#include <zstd.h>
#endif
-#ifdef HAVE_MAXMINDDB
-#include <maxminddb.h>
-#endif
-
#ifdef HAVE_NGHTTP2
#include <nghttp2/nghttp2ver.h>
#endif
@@ -806,12 +802,7 @@ epan_get_compiled_version_info(GString *str)
/* MaxMindDB */
g_string_append(str, ", ");
#ifdef HAVE_MAXMINDDB
-# ifdef PACKAGE_VERSION
- /* maxmind only defines PACKAGE_VERSION if _WIN32 */
- g_string_append(str, "with MaxMind DB resolver " PACKAGE_VERSION);
-# else
g_string_append(str, "with MaxMind DB resolver");
-# endif /* PACKAGE_VERSION */
#else
g_string_append(str, "without MaxMind DB resolver");
#endif /* HAVE_MAXMINDDB */