summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseibel_r <seibel_r@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-02-06 22:07:38 +0000
committerseibel_r <seibel_r@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-02-06 22:07:38 +0000
commitef822770531926870e6e811fddcf3b0d24125b94 (patch)
tree68be9ea82a65045ec4296956de7d854c54ddedc8
parent917aa7f6506c8d5428d2e857884df5e75cbfe1d2 (diff)
downloadATCD-ef822770531926870e6e811fddcf3b0d24125b94.tar.gz
Thu Feb 6 13:50:43 2003 Rich Seibel <seibel_r@ociweb.com>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--ace/config-tru64.h3
3 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index eb06b6ba5bd..c7b3eedff2e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Feb 6 16:06:29 2003 Rich Seibel <seibel_r@ociweb.com>
+
+ * ace/config-tru64.h: Added a guard around the
+ ACE_HAS_SNPRINTF as versions earlier than 5.0 do not seem
+ have this function.
+
Thu Feb 6 15:03:04 2003 Krishnakumar B <kitty@cs.wustl.edu>
* include/makeinclude/rules.local.GNU: Make the removal of IDL
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index eb06b6ba5bd..c7b3eedff2e 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Thu Feb 6 16:06:29 2003 Rich Seibel <seibel_r@ociweb.com>
+
+ * ace/config-tru64.h: Added a guard around the
+ ACE_HAS_SNPRINTF as versions earlier than 5.0 do not seem
+ have this function.
+
Thu Feb 6 15:03:04 2003 Krishnakumar B <kitty@cs.wustl.edu>
* include/makeinclude/rules.local.GNU: Make the removal of IDL
diff --git a/ace/config-tru64.h b/ace/config-tru64.h
index 965a19c7c23..06aa1c3596b 100644
--- a/ace/config-tru64.h
+++ b/ace/config-tru64.h
@@ -12,11 +12,14 @@
#if defined (DIGITAL_UNIX)
# include "ace/config-osf1-4.0.h"
# define ACE_HAS_NONSTATIC_OBJECT_MANAGER
+# if DIGITAL_UNIX >= 0x500
// It's possible that snprintf() is available on earlier Tru64 versions,
// but this is the only way it's been tested. Steve Huston, 22-Jan-2003
+// It is not on 4.0F. Rich Seibel, 6 Feb 2003
# ifndef ACE_HAS_SNPRINTF
# define ACE_HAS_SNPRINTF
# endif /* ACE_HAS_SNPRINTF */
+# endif /* DIGITAL_UNIX >= 0x500 */
# if DIGITAL_UNIX >= 0x40D
# define ACE_LACKS_SYSTIME_H
# endif /* DIGITAL_UNIX >= 0x40D */