summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-01-01 04:51:08 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-01-01 04:51:08 +0000
commitc1f8cda54b8ac3c25d7ef232d7fb46d2a4c9457f (patch)
tree442b1f780eeed50d0807577b098571721e01c856
parent247396ab442be3bae372cbac933105164ace2448 (diff)
downloadATCD-c1f8cda54b8ac3c25d7ef232d7fb46d2a4c9457f.tar.gz
ChangeLogTag: Tue Dec 31 23:53:17 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog10
-rw-r--r--TAO/TAO_IDL/include/idl_global.h2
-rw-r--r--TAO/tests/Bug_1269_Regression/ORB_Task.cpp1
3 files changed, 13 insertions, 0 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index a7dc85efc79..7fb49bfd4e9 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,13 @@
+Tue Dec 31 23:53:17 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
+
+ * TAO_IDL/include/idl_global.h: Added missing include to get it
+ compiling on AIX.
+
+ * tests/Bug_1269_Regression/ORB_Task.cpp: #included
+ tao/Environment.h to get it compiling on AIX.
+
+ Thanks to Jon Wackley for the patches.
+
Tue Dec 31 21:03:37 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
* performance-tests/Makefile: Added the new directory to the list
diff --git a/TAO/TAO_IDL/include/idl_global.h b/TAO/TAO_IDL/include/idl_global.h
index 6d6f3128eb0..064b731be77 100644
--- a/TAO/TAO_IDL/include/idl_global.h
+++ b/TAO/TAO_IDL/include/idl_global.h
@@ -67,9 +67,11 @@ trademarks or registered trademarks of Sun Microsystems, Inc.
#ifndef _IDL_IDL_GLOBAL_HH
#define _IDL_IDL_GLOBAL_HH
+// May of them could be forward declared..
#include "ace/SString.h"
#include "ace/Hash_Map_Manager_T.h"
#include "ace/Containers_T.h"
+#include "ace/Synch_T.h"
#include "idl_bool.h"
#include "ast_expression.h"
#include "ast_predefined_type.h"
diff --git a/TAO/tests/Bug_1269_Regression/ORB_Task.cpp b/TAO/tests/Bug_1269_Regression/ORB_Task.cpp
index 35fca1ebc30..7182d663207 100644
--- a/TAO/tests/Bug_1269_Regression/ORB_Task.cpp
+++ b/TAO/tests/Bug_1269_Regression/ORB_Task.cpp
@@ -7,6 +7,7 @@
*
*/
#include "ORB_Task.h"
+#include "tao/Environment.h"
ACE_RCSID(Bug_1269_Regression, ORB_Task, "$Id$")