aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/ftype-time.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 /epan/ftypes/ftype-time.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 'epan/ftypes/ftype-time.c')
-rw-r--r--epan/ftypes/ftype-time.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/epan/ftypes/ftype-time.c b/epan/ftypes/ftype-time.c
index 25c7f3d7b3..d34fd095e3 100644
--- a/epan/ftypes/ftype-time.c
+++ b/epan/ftypes/ftype-time.c
@@ -1,5 +1,5 @@
/*
- * $Id: ftype-time.c,v 1.14 2002/01/30 10:10:03 guy Exp $
+ * $Id: ftype-time.c,v 1.15 2002/01/30 10:19:44 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -31,23 +31,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 <ftypes-int.h>