diff options
author | Guy Harris <guy@alum.mit.edu> | 2008-05-05 22:47:32 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2008-05-05 22:47:32 +0000 |
commit | 31cae6e4ef358e39961d5620debf04c45311ae76 (patch) | |
tree | c41aaed36ad6a43e9b359d865983e833c5e3c6c5 /epan/tap.h | |
parent | 773e6321d8a9b05e5031a212dc5123dbd6832acb (diff) | |
download | wireshark-31cae6e4ef358e39961d5620debf04c45311ae76.tar.gz wireshark-31cae6e4ef358e39961d5620debf04c45311ae76.tar.bz2 wireshark-31cae6e4ef358e39961d5620debf04c45311ae76.zip |
Require GLib 2.4 or later.
That means that G_GINT64_MODIFIER will be defined, so don't check
whether it's defined.
We don't use the PRI[douxX]64 macros, as we use the GLib print routines
and thus use G_GINT64_MODIFIER instead. Get rid of the checks for
whether inttypes.h defines PRI[douxX]64; just check whether it exists at
all.
That means we don't set INTTYPES_H_DEFINES_FORMATS, so don't check for
it.
svn path=/trunk/; revision=25243
Diffstat (limited to 'epan/tap.h')
-rw-r--r-- | epan/tap.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/epan/tap.h b/epan/tap.h index e9890cd03b..4f4855deff 100644 --- a/epan/tap.h +++ b/epan/tap.h @@ -27,10 +27,6 @@ #include "epan/epan.h" -#ifdef INTTYPES_H_DEFINES_FORMATS -#include <inttypes.h> -#endif - /* With MSVC and a libwireshark.dll, we need a * special declaration of num_tap_filters. */ |