aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-06-11 02:35:58 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2011-06-11 02:35:58 +0000
commit139d8cc6efd396af1eb2e2becaafa6b6aff3cae9 (patch)
tree4b5ae18eaf6566ac5c97ae46773d9f7f173e8907 /version_info.c
parent0961d988afb9f7d45518f5466a847ad4a694487f (diff)
The "shared by every program in the Wireshark suite, including dumpcap"
version information doesn't include Python version information (only programs using libwireshark have that) or GeoIP version information (ditto). Don't include headers required only for that information; hopefully this will keep dumpcap from requiring the Python library on Windows. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37650 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'version_info.c')
-rw-r--r--version_info.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/version_info.c b/version_info.c
index 8435bb019d..64b6f4e44e 100644
--- a/version_info.c
+++ b/version_info.c
@@ -26,10 +26,6 @@
# include "config.h"
#endif
-#ifdef HAVE_PYTHON
-#include <Python.h> /* to get the Python version number (PY_VERSION) */
-#endif
-
#include <glib.h>
#include <stdlib.h>
@@ -67,10 +63,6 @@
# include <sys/capability.h>
#endif
-#ifdef HAVE_GEOIP
-#include <epan/geoip_db.h>
-#endif
-
#ifdef SVNVERSION
const char *wireshark_svnversion = " (" SVNVERSION " from " SVNPATH ")";
#else