summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormcorino <mcorino@users.noreply.github.com>2004-11-05 16:16:31 +0000
committermcorino <mcorino@users.noreply.github.com>2004-11-05 16:16:31 +0000
commit4297c33df8726a152413c1d6d7f69c6b543c53c8 (patch)
treef2778da38d55c35f567ad31bcd01c5d731d78eac
parentbeaf31add22ca7d1eaf814805eedf7c2e5153f29 (diff)
downloadATCD-4297c33df8726a152413c1d6d7f69c6b543c53c8.tar.gz
ChangeLogTag: Fri Nov 5 16:14:12 UTC 2004 Martin Corino <mcorino@remedy.nl>
-rw-r--r--ChangeLog6
-rw-r--r--ace/OS_NS_stdlib.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index eb262e852ef..11c50b08ef9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Nov 5 16:14:12 UTC 2004 Martin Corino <mcorino@remedy.nl>
+
+ * ace/OS_NS_stdlib.cpp:
+ Fixed unnecessary inclusion of 'limits' for VxWorks because
+ it caused problems with GCC 2.9.6 toolchain.
+
Fri Nov 5 07:52:51 2004 J.T. Conklin <jtc@acorntoolworks.com>
* ace/ACE.cpp:
diff --git a/ace/OS_NS_stdlib.cpp b/ace/OS_NS_stdlib.cpp
index 4ca25391d8a..b54bcfe94eb 100644
--- a/ace/OS_NS_stdlib.cpp
+++ b/ace/OS_NS_stdlib.cpp
@@ -26,7 +26,7 @@ ACE_RCSID (ace,
# include "ace/OS_NS_ctype.h"
# include "ace/OS_NS_sys_time.h"
-# if !defined (ACE_HAS_WINCE)
+# if !defined (ACE_HAS_WINCE) && !defined (ACE_VXWORKS)
# include /**/ <limits>
# endif
#endif /* ACE_LACKS_MKSTEMP */