diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-10-28 00:57:15 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-10-28 00:57:15 +0000 |
commit | 6eb4ae7a7dd92192f4bfc9dfb052f8ea21676e69 (patch) | |
tree | adca3d45fd2c601088443aff3d78e1918b0b4133 /epan | |
parent | facce7278a018b913a9a6cfa284b57cb5de7eabd (diff) | |
download | wireshark-6eb4ae7a7dd92192f4bfc9dfb052f8ea21676e69.tar.gz wireshark-6eb4ae7a7dd92192f4bfc9dfb052f8ea21676e69.tar.bz2 wireshark-6eb4ae7a7dd92192f4bfc9dfb052f8ea21676e69.zip |
From Mike Frisch: Win32 systems don't have "strptime()", so we need to
use a replacement "strptime()" on those systems, and thus need to
include "strptime.h" to declare "strptime()".
svn path=/trunk/; revision=4092
Diffstat (limited to 'epan')
-rw-r--r-- | epan/config.h.win32 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/config.h.win32 b/epan/config.h.win32 index 2caf7b2d46..857af2d019 100644 --- a/epan/config.h.win32 +++ b/epan/config.h.win32 @@ -1,4 +1,4 @@ -/* $Id: config.h.win32,v 1.8 2001/08/21 06:39:16 guy Exp $ */ +/* $Id: config.h.win32,v 1.9 2001/10/28 00:57:15 guy Exp $ */ /* config.h.win32 Generated manually. :-) */ /* config.h. Generated automatically by configure. */ /* config.h.in. Generated automatically from configure.in by autoheader. */ @@ -83,6 +83,7 @@ #define HAVE_DIRECT_H 1 #define HAVE_IO_H 1 #define NEED_GETOPT_H 1 +#define NEED_STRPTIME_H 1 #define snprintf _snprintf #define vsnprintf _vsnprintf #define strcasecmp stricmp |