summaryrefslogtreecommitdiff
path: root/text2pcap.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2002-01-29 22:57:31 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2002-01-29 22:57:31 +0000
commit147b9e8d5299ccc6c51cdf48ed7495267ad845db (patch)
treed03a88be9e8d97a07121a8cbaec118d59fe8e5dd /text2pcap.c
parent3c1fb071eb4ad77b0c2966383d11a86539f317ec (diff)
downloadwireshark-147b9e8d5299ccc6c51cdf48ed7495267ad845db.tar.gz
Use:
#ifndef _XOPEN_SOURCE #define _XOPEN_SOURCE 500 #endif #define __USE_XOPEN #include <time.h> to get strptime() declared in time.h on various systems. I hope this helps more than it hurts. svn path=/trunk/; revision=4624
Diffstat (limited to 'text2pcap.c')
-rw-r--r--text2pcap.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/text2pcap.c b/text2pcap.c
index 46ec3673df..17b43d2338 100644
--- a/text2pcap.c
+++ b/text2pcap.c
@@ -6,7 +6,7 @@
*
* (c) Copyright 2001 Ashok Narayanan <ashokn@cisco.com>
*
- * $Id: text2pcap.c,v 1.11 2002/01/23 08:35:17 guy Exp $
+ * $Id: text2pcap.c,v 1.12 2002/01/29 22:57:30 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -85,7 +85,18 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+
+/*
+ * Just make sure we include the prototype for strptime as well
+ * (needed for glibc 2.2)
+ */
+#ifndef _XOPEN_SOURCE
+#define _XOPEN_SOURCE 500
+#endif
+#define __USE_XOPEN
+
#include <time.h>
+
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>