aboutsummaryrefslogtreecommitdiffstats
path: root/text2pcap.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-01-30 10:19:44 +0000
committerGuy Harris <guy@alum.mit.edu>2002-01-30 10:19:44 +0000
commit7b4403d361e282183b0794d6037c2847ac1944ad (patch)
tree6d8ddb26dd43ea4d13fb83763dceae1db0004ed6 /text2pcap.c
parente6f24ee9515c746b91136f9dc3efc3d40afdab9b (diff)
Try defining just _USE_XOPEN and see if that gets "strptime()" declared
on most platforms; it works on Solaris, at least. svn path=/trunk/; revision=4630
Diffstat (limited to 'text2pcap.c')
-rw-r--r--text2pcap.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/text2pcap.c b/text2pcap.c
index f3e037c3b4..92f7fcf540 100644
--- a/text2pcap.c
+++ b/text2pcap.c
@@ -6,7 +6,7 @@
*
* (c) Copyright 2001 Ashok Narayanan <ashokn@cisco.com>
*
- * $Id: text2pcap.c,v 1.13 2002/01/30 10:10:01 guy Exp $
+ * $Id: text2pcap.c,v 1.14 2002/01/30 10:19:43 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -90,23 +90,8 @@
* 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
-/*
- * Defining _XOPEN_SOURCE is needed on some platforms, e.g. platforms
- * using glibc, to expand the set of things system header files define.
- *
- * Unfortunately, on other platforms, such as some versions of Solaris,
- * it *reduces* that set as well, e.g. causing "struct timeval" not
- * to be defined.
- *
- * So we define __EXTENSIONS__ so that "struct timeval" is defined.
- */
-#define __EXTENSIONS__
-
#include <time.h>
#include <sys/types.h>