summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-06-14 13:47:21 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-06-14 13:47:21 +0000
commitc1c16ac50097f854a97f6048ede703bf6405afe2 (patch)
tree7c777122a7579e8147c70f0e68458e6a542e5058
parentc1f0721de27e9ca4d7aa99d98f37058dc41d8605 (diff)
downloadATCD-c1c16ac50097f854a97f6048ede703bf6405afe2.tar.gz
ChangeLogTag:Sat Jun 14 08:44:32 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/tao/Exception.h1
2 files changed, 9 insertions, 0 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index e1b7c401571..c4a4d632340 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Sat Jun 14 08:44:32 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * tao/Exception.h: gcc version 2.9-gnupro-98r2 on LynxOS produces
+ a huge amount of "implicit declaration of function `int
+ vsprintf(...)'" warnings on TAO build. LynxOS needs stdarg.h to
+ be included before stdio.h. Thanks to Olli Savia <ops@iki.fi>
+ for the patch.
+
Fri Jun 13 13:11:49 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* Makefile: Removed creation of a README for orbsvcs during the
diff --git a/TAO/tao/Exception.h b/TAO/tao/Exception.h
index 04527692ff5..bd6aae49515 100644
--- a/TAO/tao/Exception.h
+++ b/TAO/tao/Exception.h
@@ -35,6 +35,7 @@
#include "ace/SStringfwd.h"
#include "ace/iosfwd.h"
+#include <stdarg.h>
#include <stdio.h> /* For "FILE" typedef. */
class ACE_Allocator;