aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/ftype-time.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-06-02 06:21:14 +0000
committerGuy Harris <guy@alum.mit.edu>2001-06-02 06:21:14 +0000
commit14ab278788649dda5708e23c012b27f79f58333a (patch)
treed0c705c84de2ea66679b6ae6286d74fe3060a46d /epan/ftypes/ftype-time.c
parent89a74629b27c4a462cabac80a3170fec156ad1b8 (diff)
Windows and the MSVC++ 6.0 library don't have "strptime()", so pull in
the glibc "strptime()" (modified so it doesn't require the rest of glibc), set up the configure script to check for it, and set up Makefile.am and Makefile.nmake to use it. Get rid of NEED_MKSTEMP - nothing uses it. svn path=/trunk/; revision=3500
Diffstat (limited to 'epan/ftypes/ftype-time.c')
-rw-r--r--epan/ftypes/ftype-time.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/epan/ftypes/ftype-time.c b/epan/ftypes/ftype-time.c
index 156b59d68a..a11b0fb5b6 100644
--- a/epan/ftypes/ftype-time.c
+++ b/epan/ftypes/ftype-time.c
@@ -1,5 +1,5 @@
/*
- * $Id: ftype-time.c,v 1.6 2001/05/31 06:48:00 guy Exp $
+ * $Id: ftype-time.c,v 1.7 2001/06/02 06:21:14 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -31,6 +31,10 @@
#include <ftypes-int.h>
+#ifdef NEED_STRPTIME_H
+#include "strptime.h"
+#endif
+
static gboolean
cmp_eq(fvalue_t *a, fvalue_t *b)
{