summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichel_j <michel_j@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-05-27 20:33:55 +0000
committermichel_j <michel_j@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-05-27 20:33:55 +0000
commit99e67f7a700fb0550a674b47bc8c04146e524e99 (patch)
treeb8d2b5e65154b0eb528b2a30baea7f7febe9ed38
parent8ae11ab7b348cf3cafc5da5cf0ad4294d7057ff2 (diff)
downloadATCD-99e67f7a700fb0550a674b47bc8c04146e524e99.tar.gz
ChangeLogTag: Fri May 27 15:30:21 2005 Justin Michel <michel_j@ociweb.com>
-rw-r--r--TAO/ChangeLog56
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/Activator_NT_Service.h2
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/Locator_NT_Service.h2
-rw-r--r--TAO/tao/TypeCode_Base_Attributes.h2
-rw-r--r--TAO/tao/TypeCode_Case.h2
-rw-r--r--TAO/tao/TypeCode_Case_T.h2
-rw-r--r--TAO/tao/TypeCode_Struct_Field.h2
-rw-r--r--TAO/tao/TypeCode_Value_Field.h2
-rw-r--r--TAO/utils/wxNamingViewer/pch.h2
9 files changed, 45 insertions, 27 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index aa31c6be7c1..8abfa82b7b9 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,16 +1,34 @@
+Fri May 27 15:30:21 2005 Justin Michel <michel_j@ociweb.com>
+
+ * orbsvcs/ImplRepo_Service/Activator_NT_Service.h:
+ * orbsvcs/ImplRepo_Service/Locator_NT_Service.h:
+ * tao/TypeCode_Base_Attributes.h:
+ * tao/TypeCode_Case.h:
+ * tao/TypeCode_Case_T.h:
+ * tao/TypeCode_Struct_Field.h:
+ * tao/TypeCode_Value_Field.h:
+ * utils/wxNamingViewer/pch.h:
+
+ These files #included config.h which isn't safe, because
+ it won't necessarilly pick up the correct symbols. For example, I
+ caught this by trying to build ACE on Windows with __ACE_INLINE__ = 0.
+ The files that #included config.h directly saw that it was defined as 0, but
+ changing them to #include config-all.h instead, correctly saw that
+ the symbol was undefined.
+
Fri May 27 13:12:10 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
- * tests/Any/Recursive/Test.idl:
+ * tests/Any/Recursive/Test.idl:
- Added new user exception to be used when reporting Any
- demarshaling errors.
+ Added new user exception to be used when reporting Any
+ demarshaling errors.
- * tests/Any/Recursive/client.cpp:
+ * tests/Any/Recursive/client.cpp:
- Fixed unused argument warnings.
+ Fixed unused argument warnings.
- Use the new user exception when report Any demarshaling
- failures, instead of CORBA::INV_OBJREF.
+ Use the new user exception when report Any demarshaling
+ failures, instead of CORBA::INV_OBJREF.
Fri May 27 08:50:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
@@ -47,18 +65,18 @@ Fri May 27 08:25:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Fri May 27 00:36:32 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
- * tests/Any/Recursive/Hello.cpp:
- * tests/Any/Recursive/Hello.h:
- * tests/Any/Recursive/README:
- * tests/Any/Recursive/RecursiveHello.mpc:
- * tests/Any/Recursive/Test.idl:
- * tests/Any/Recursive/client.cpp:
- * tests/Any/Recursive/run_test.pl:
- * tests/Any/Recursive/server.cpp:
-
- New test that verifies properly functioning recursive type Any
- insertion and extraction support. It also indirectly verifies
- that recursive TypeCode support is working.
+ * tests/Any/Recursive/Hello.cpp:
+ * tests/Any/Recursive/Hello.h:
+ * tests/Any/Recursive/README:
+ * tests/Any/Recursive/RecursiveHello.mpc:
+ * tests/Any/Recursive/Test.idl:
+ * tests/Any/Recursive/client.cpp:
+ * tests/Any/Recursive/run_test.pl:
+ * tests/Any/Recursive/server.cpp:
+
+ New test that verifies properly functioning recursive type Any
+ insertion and extraction support. It also indirectly verifies
+ that recursive TypeCode support is working.
Thu May 26 16:09:50 2005 Justin Michel <michel_j@ociweb.com>
diff --git a/TAO/orbsvcs/ImplRepo_Service/Activator_NT_Service.h b/TAO/orbsvcs/ImplRepo_Service/Activator_NT_Service.h
index 1a0b1abed30..bde40cf1cd9 100644
--- a/TAO/orbsvcs/ImplRepo_Service/Activator_NT_Service.h
+++ b/TAO/orbsvcs/ImplRepo_Service/Activator_NT_Service.h
@@ -15,7 +15,7 @@
#ifndef Activator_NT_Service_H
#define Activator_NT_Service_H
-#include "ace/config.h"
+#include "ace/config-all.h"
#if defined (ACE_WIN32)
diff --git a/TAO/orbsvcs/ImplRepo_Service/Locator_NT_Service.h b/TAO/orbsvcs/ImplRepo_Service/Locator_NT_Service.h
index b7e1ab9d39b..c2199926f63 100644
--- a/TAO/orbsvcs/ImplRepo_Service/Locator_NT_Service.h
+++ b/TAO/orbsvcs/ImplRepo_Service/Locator_NT_Service.h
@@ -15,7 +15,7 @@
#ifndef Locator_NT_Service_H
#define Locator_NT_Service_H
-#include "ace/config.h"
+#include "ace/config-all.h"
#if defined (ACE_WIN32)
diff --git a/TAO/tao/TypeCode_Base_Attributes.h b/TAO/tao/TypeCode_Base_Attributes.h
index e7c76bf6fce..797c4373f47 100644
--- a/TAO/tao/TypeCode_Base_Attributes.h
+++ b/TAO/tao/TypeCode_Base_Attributes.h
@@ -15,7 +15,7 @@
#include /**/ "ace/pre.h"
-#include "ace/config.h"
+#include "ace/config-all.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
diff --git a/TAO/tao/TypeCode_Case.h b/TAO/tao/TypeCode_Case.h
index 4522f64ac5f..258b3ce299f 100644
--- a/TAO/tao/TypeCode_Case.h
+++ b/TAO/tao/TypeCode_Case.h
@@ -17,7 +17,7 @@
#include /**/ "ace/pre.h"
-#include "ace/config.h"
+#include "ace/config-all.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
diff --git a/TAO/tao/TypeCode_Case_T.h b/TAO/tao/TypeCode_Case_T.h
index 6a23d9b44c5..ea36c766bc7 100644
--- a/TAO/tao/TypeCode_Case_T.h
+++ b/TAO/tao/TypeCode_Case_T.h
@@ -17,7 +17,7 @@
#include /**/ "ace/pre.h"
-#include "ace/config.h"
+#include "ace/config-all.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
diff --git a/TAO/tao/TypeCode_Struct_Field.h b/TAO/tao/TypeCode_Struct_Field.h
index 85cfa05a550..ad1fb0b35c2 100644
--- a/TAO/tao/TypeCode_Struct_Field.h
+++ b/TAO/tao/TypeCode_Struct_Field.h
@@ -18,7 +18,7 @@
#include /**/ "ace/pre.h"
-#include "ace/config.h"
+#include "ace/config-all.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
diff --git a/TAO/tao/TypeCode_Value_Field.h b/TAO/tao/TypeCode_Value_Field.h
index c62ec4fe2f7..7fbfcb20501 100644
--- a/TAO/tao/TypeCode_Value_Field.h
+++ b/TAO/tao/TypeCode_Value_Field.h
@@ -17,7 +17,7 @@
#include /**/ "ace/pre.h"
-#include "ace/config.h"
+#include "ace/config-all.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
diff --git a/TAO/utils/wxNamingViewer/pch.h b/TAO/utils/wxNamingViewer/pch.h
index 4a00380b335..83e34dac513 100644
--- a/TAO/utils/wxNamingViewer/pch.h
+++ b/TAO/utils/wxNamingViewer/pch.h
@@ -4,7 +4,7 @@
#ifndef i_pch_h
#define i_pch_h
-#include "ace/config.h"
+#include "ace/config-all.h"
#include "wx/wxprec.h"
#ifdef WX_PRECOMP