summaryrefslogtreecommitdiff
path: root/version_info.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-06-11 02:35:58 +0000
committerGuy Harris <guy@alum.mit.edu>2011-06-11 02:35:58 +0000
commit317cb92f9c6af21c65bb661c5589122df8165935 (patch)
tree4b5ae18eaf6566ac5c97ae46773d9f7f173e8907 /version_info.c
parent79a0fbdca0a3b6cc187f3ac424f5260d655be5e9 (diff)
downloadwireshark-317cb92f9c6af21c65bb661c5589122df8165935.tar.gz
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. svn path=/trunk/; revision=37650
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