summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichel_j <michel_j@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-05-23 19:53:42 +0000
committermichel_j <michel_j@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-05-23 19:53:42 +0000
commit0e1a817907df55d9dc7dec2c4e57a38ad29452e1 (patch)
treeaa6d51388ec418faddf2428a758712facc8cec08
parentee03983df30160c4aa6de3cefc3251d4ec5a0d68 (diff)
downloadATCD-0e1a817907df55d9dc7dec2c4e57a38ad29452e1.tar.gz
ChangeLogTag: Mon May 23 14:50:27 2005 Justin Michel <michel_j@ociweb.com>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/orbsvcs/examples/ImR/Advanced/Advanced.mpc9
2 files changed, 10 insertions, 6 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 9e339856fb6..3b6a382b3e3 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Mon May 23 14:50:27 2005 Justin Michel <michel_j@ociweb.com>
+
+ * orbsvcs/examples/ImR/Advanced/Advanced.mpc:
+
+ Changed from requires += exceptions to inheriting from exceptions. Hopefully
+ this will eliminate fuzz errors.
+
Mon May 23 18:47:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/tutorials/Quoter/RT_Event_Service/Quoter_RT_Event_Service.mpc:
diff --git a/TAO/orbsvcs/examples/ImR/Advanced/Advanced.mpc b/TAO/orbsvcs/examples/ImR/Advanced/Advanced.mpc
index 9d611e4a943..fbdc1c2f924 100644
--- a/TAO/orbsvcs/examples/ImR/Advanced/Advanced.mpc
+++ b/TAO/orbsvcs/examples/ImR/Advanced/Advanced.mpc
@@ -1,6 +1,5 @@
//$Id$
-project(*Manager): orbsvcsexe, portableserver {
- requires += exceptions
+project(*Manager): orbsvcsexe, portableserver, exceptions {
Source_Files {
manager_main.cpp
Manager_i.cpp
@@ -13,8 +12,7 @@ project(*Manager): orbsvcsexe, portableserver {
}
}
-project(*Server): orbsvcsexe, portableserver, iortable {
- requires += exceptions
+project(*Server): orbsvcsexe, portableserver, iortable, exceptions {
Source_Files {
server_main.cpp
TestServer.cpp
@@ -25,8 +23,7 @@ project(*Server): orbsvcsexe, portableserver, iortable {
}
}
-project(*Client): orbsvcsexe {
- requires += exceptions
+project(*Client): orbsvcsexe, exceptions {
Source_Files {
client_main.cpp
TestClient.cpp