summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2004-09-24 14:57:46 +0000
committerSteve Huston <shuston@riverace.com>2004-09-24 14:57:46 +0000
commit2306d83ee9f56323714e5333f12f482d9be7ee87 (patch)
tree55e16460d04dd663ced3b3ce7b423715b41e4a84
parent9f460517103786c1943be2ecbb00c88f89ce00de (diff)
downloadATCD-2306d83ee9f56323714e5333f12f482d9be7ee87.tar.gz
ChangeLogTag:Fri Sep 24 10:55:34 2004 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog5
-rw-r--r--ace/config-linux-common.h6
2 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3a003bc9662..80c0d80c17e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Sep 24 10:55:34 2004 Steve Huston <shuston@riverace.com>
+
+ * ace/config-linux-common.h: If __USE_POSIX199309 is defined from
+ <features.h> set ACE_HAS_CLOCK_GETTIME. This is most often the case.
+
Fri Sep 24 10:40:11 2004 Steve Huston <shuston@riverace.com>
* apps/JAWS/clients/Blobby/blobby.cpp:
diff --git a/ace/config-linux-common.h b/ace/config-linux-common.h
index 604afbb7fea..ac59944272c 100644
--- a/ace/config-linux-common.h
+++ b/ace/config-linux-common.h
@@ -29,6 +29,12 @@
# define ACE_HAS_PTHREADS_UNIX98_EXT
#endif /* _XOPEN_SOURCE - 0 >= 500 */
+#if defined (__USE_POSIX199309)
+# if !defined (ACE_HAS_CLOCK_GETTIME)
+# define ACE_HAS_CLOCK_GETTIME
+# endif
+#endif
+
// First the machine specific part
#if defined (__alpha)