summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-10 19:53:11 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-10 19:53:11 +0000
commit9d91084c5d4f462efece76d7ab1abe1f6c1f8672 (patch)
tree2958387ba7a84fd9c850d1af805b9b920ac7c3bf /ace
parent8356545007b7f43ae260719c950e949deaf50ed2 (diff)
downloadATCD-9d91084c5d4f462efece76d7ab1abe1f6c1f8672.tar.gz
ChangeLogTag: Tue Aug 10 14:46:12 1999 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'ace')
-rw-r--r--ace/OS.cpp18
-rw-r--r--ace/OS.h6
-rw-r--r--ace/README3
-rw-r--r--ace/config-irix6.x-common.h2
-rw-r--r--ace/config-linux-common.h2
-rw-r--r--ace/config-osf1-4.0.h1
-rw-r--r--ace/config-sunos5.5.h4
7 files changed, 24 insertions, 12 deletions
diff --git a/ace/OS.cpp b/ace/OS.cpp
index 62540c92e88..fba7d4651d0 100644
--- a/ace/OS.cpp
+++ b/ace/OS.cpp
@@ -6674,7 +6674,8 @@ exit (int status)
# endif /* ACE_HAS_WINCE */
-#if defined (ACE_LACKS_STRPTIME)
+#if defined (ACE_HAS_STRPTIME)
+# if defined (ACE_LACKS_NATIVE_STRPTIME)
int
ACE_OS::strptime_getnum (char *buf,
int *num,
@@ -6705,18 +6706,14 @@ ACE_OS::strptime_getnum (char *buf,
else
return 0;
}
-#endif /* ACE_LACKS_STRPTIME */
+# endif /* ACE_LACKS_NATIVE_STRPTIME */
char *
ACE_OS::strptime (char *buf,
const char *format,
struct tm *tm)
{
-#if !defined (ACE_LACKS_STRPTIME)
- return ::strptime (buf,
- format,
- tm);
-#else
+#if defined (ACE_LACKS_NATIVE_STRPTIME)
int bi = 0, fi = 0, percent = 0;
int wday = 0, yday = 0;
struct tm tmp;
@@ -6954,5 +6951,10 @@ ACE_OS::strptime (char *buf,
}
return buf + bi;
-#endif /* !defined (ACE_LACKS_STRPTIME) */
+#else /* ! ACE_LACKS_NATIVE_STRPTIME */
+ return ::strptime (buf,
+ format,
+ tm);
+#endif /* ! ACE_LACKS_NATIVE_STRPTIME */
}
+#endif /* ACE_HAS_STRPTIME */
diff --git a/ace/OS.h b/ace/OS.h
index bbe852b81f3..3bf7ffaba89 100644
--- a/ace/OS.h
+++ b/ace/OS.h
@@ -6127,9 +6127,11 @@ public:
const char *reject);
static size_t strspn(const char *s1,
const char *s2);
+#if defined (ACE_HAS_STRPTIME)
static char *strptime (char *buf,
const char *format,
struct tm *tm);
+#endif /* ACE_HAS_STRPTIME */
static char *strstr (char *s,
const char *t);
static const char *strstr (const char *s,
@@ -6576,14 +6578,14 @@ private:
friend class ACE_OS_Object_Manager;
// Allow the ACE_OS_Object_Manager to call set_exit_hook.
-#if defined (ACE_LACKS_STRPTIME)
+#if defined (ACE_HAS_STRPTIME) && defined (ACE_LACKS_NATIVE_STRPTIME)
static int strptime_getnum (char *buf,
int *num,
int *bi,
int *fi,
int min,
int max);
-#endif /* ACE_LACKS_STRPTIME */
+#endif /* ACE_HAS_STRPTIME && ACE_LACKS_NATIVE_STRPTIME */
# if defined (ACE_WIN32)
# if defined (ACE_HAS_WINCE)
diff --git a/ace/README b/ace/README
index aa2809783f0..4f27b3d35e8 100644
--- a/ace/README
+++ b/ace/README
@@ -485,6 +485,7 @@ ACE_HAS_SPARCWORKS_401_SIGNALS Compiler has brain-damaged
prototype...
ACE_HAS_SSIZE_T Compiler supports the ssize_t
typedef
+ACE_HAS_STRPTIME Enables ACE_OS::strptime ().
ACE_HAS_STHREADS Platform supports Solaris
threads
ACE_HAS_STANDARD_CPP_LIBRARY Platform/compiler supports
@@ -797,7 +798,7 @@ ACE_LACKS_SOME_POSIX_PROTOTYPES Platform lacks POSIX
prototypes for certain System
V functions like shared memory
and message queues.
-ACE_LACKS_STRPTIME Platform/compiler lacks the strptime()
+ACE_LACKS_NATIVE_STRPTIME Platform/compiler lacks the strptime()
function.
ACE_LACKS_STRRCHR Platform/compiler lacks
strrchr () function.
diff --git a/ace/config-irix6.x-common.h b/ace/config-irix6.x-common.h
index 4e02604dc2f..836d07f4f06 100644
--- a/ace/config-irix6.x-common.h
+++ b/ace/config-irix6.x-common.h
@@ -122,6 +122,8 @@
// Platform supports IP multicast
#define ACE_HAS_IP_MULTICAST
+#define ACE_HAS_STRPTIME
+
//**************************************************************
// Not so sure how next lines should look like
diff --git a/ace/config-linux-common.h b/ace/config-linux-common.h
index 38a59e61824..9d86285be19 100644
--- a/ace/config-linux-common.h
+++ b/ace/config-linux-common.h
@@ -166,6 +166,8 @@
// Compiler/platform supports strerror ().
#define ACE_HAS_STRERROR
+#define ACE_HAS_STRPTIME
+
// Compiler supports the ssize_t typedef.
#define ACE_HAS_SSIZE_T
diff --git a/ace/config-osf1-4.0.h b/ace/config-osf1-4.0.h
index 12d38213c9e..b9dceb31bf6 100644
--- a/ace/config-osf1-4.0.h
+++ b/ace/config-osf1-4.0.h
@@ -181,6 +181,7 @@
#define ACE_HAS_STREAMS
#define ACE_HAS_STRERROR
#define ACE_HAS_STRING_CLASS
+#define ACE_HAS_STRPTIME
#define ACE_HAS_SVR4_DYNAMIC_LINKING
#define ACE_HAS_SVR4_SIGNAL_T
#define ACE_HAS_SYSCALL_H
diff --git a/ace/config-sunos5.5.h b/ace/config-sunos5.5.h
index 07946945b44..6091a32aed7 100644
--- a/ace/config-sunos5.5.h
+++ b/ace/config-sunos5.5.h
@@ -27,7 +27,7 @@
to work around problems with automatic template instantiation. */
# define ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION
# define ACE_HAS_STD_TEMPLATE_SPECIALIZATION
-// Note that SunC++ 5.0 doesn't yet appear to support
+// Note that SunC++ 5.0 doesn't yet appear to support
// ACE_HAS_STD_TEMPLATE_METHOD_SPECIALIZATION...
# define ACE_TEMPLATES_REQUIRE_SOURCE
# define ACE_HAS_STANDARD_CPP_LIBRARY 1
@@ -296,6 +296,8 @@
// Platform supports ACE_TLI.
#define ACE_HAS_TLI
+#define ACE_HAS_STRPTIME
+
// Turns off the tracing feature.
#if !defined (ACE_NTRACE)
# define ACE_NTRACE 1