summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseibel_r <seibel_r@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-02-14 16:17:42 +0000
committerseibel_r <seibel_r@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-02-14 16:17:42 +0000
commite5abb970ff5000e9b3fe9832c9f4c8530cc5148d (patch)
tree8ad501ed93357135e96f98dc9274969867f36604
parentcde9edf84c38accc48a690f550ec27304e7256c3 (diff)
downloadATCD-e5abb970ff5000e9b3fe9832c9f4c8530cc5148d.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--ace/config-osf1-4.0.h7
3 files changed, 19 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3d492eaab20..a433e7bb105 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Fri Feb 14 09:53:43 2003 Rich Seibel <seibel_r@ociweb.com>
+
+ * ace/config-osf1-4.0.h: Tru64 lacks the clearerr
+ function when built without threads (thread=0).
+ Thanks to Abhay Kulkarni <Abhay.Kulkarni@veritas.com>
+ for reporting the problem.
+
Thu Feb 13 17:50:07 2003 Krishnakumar B <kitty@cse.wustl.edu>
* include/makeinclude/rules.lib.GNU: Build static libraries
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 3d492eaab20..a433e7bb105 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Fri Feb 14 09:53:43 2003 Rich Seibel <seibel_r@ociweb.com>
+
+ * ace/config-osf1-4.0.h: Tru64 lacks the clearerr
+ function when built without threads (thread=0).
+ Thanks to Abhay Kulkarni <Abhay.Kulkarni@veritas.com>
+ for reporting the problem.
+
Thu Feb 13 17:50:07 2003 Krishnakumar B <kitty@cse.wustl.edu>
* include/makeinclude/rules.lib.GNU: Build static libraries
diff --git a/ace/config-osf1-4.0.h b/ace/config-osf1-4.0.h
index 7666cf1b3c5..fc732de8245 100644
--- a/ace/config-osf1-4.0.h
+++ b/ace/config-osf1-4.0.h
@@ -156,11 +156,14 @@
#define ACE_HAS_SVR4_SIGNAL_T
#define ACE_HAS_SYSCALL_H
#define ACE_HAS_SYSV_IPC
-#if (ACE_MT_SAFE != 0)
+#if (ACE_MT_SAFE == 0)
+// clearerr is not defined when _REENTRANT is not defined
+#define ACE_LACKS_CLEARERR
+#else /* ACE_MT_SAFE != 0 */
#define ACE_HAS_THREADS
#define ACE_HAS_THREAD_SPECIFIC_STORAGE
#define ACE_LACKS_THREAD_STACK_ADDR
-#endif
+#endif /* ACE_MT_SAFE != 0 */
#define ACE_HAS_TIUSER_H
#define ACE_HAS_TLI
#define ACE_HAS_TLI_PROTOTYPES