summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;