aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-06-02 06:21:14 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-06-02 06:21:14 +0000
commite2eb126f27c4bb8b17f39c63f953c498d8e8f2b8 (patch)
treed0c705c84de2ea66679b6ae6286d74fe3060a46d /epan
parentf45baa03537f0573c3ec9e7addacee5b17040590 (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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3500 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan')
-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)
{