summaryrefslogtreecommitdiff
path: root/TAO/examples/POA
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-08-11 18:51:10 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-08-11 18:51:10 +0000
commit0776418701dae49d90ce6d2fdc6b200e210b57fb (patch)
tree60d4437f4be49ddcdbc94a0c1c67e0810fb58903 /TAO/examples/POA
parent7e26cd7143441080a1cba3fa3f0d636fd4f6b588 (diff)
downloadATCD-0776418701dae49d90ce6d2fdc6b200e210b57fb.tar.gz
ChangeLogTag: Wed Aug 11 09:36:16 2004 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'TAO/examples/POA')
-rw-r--r--TAO/examples/POA/Adapter_Activator/POA_Adapter_Activator.mpc3
-rw-r--r--TAO/examples/POA/DSI/POA_DSI.mpc6
-rw-r--r--TAO/examples/POA/Default_Servant/POA_Default_Servant.mpc6
-rw-r--r--TAO/examples/POA/Explicit_Activation/POA_Explicit_Activation.mpc3
-rw-r--r--TAO/examples/POA/FindPOA/POA_FindPOA.mpc3
-rw-r--r--TAO/examples/POA/Forwarding/POA_Forwarding.mpc6
-rw-r--r--TAO/examples/POA/Generic_Servant/POA_Generic_Servant.mpc6
-rw-r--r--TAO/examples/POA/Loader/POA_Loader.mpc3
-rw-r--r--TAO/examples/POA/NewPOA/POA_NewPOA.mpc3
-rw-r--r--TAO/examples/POA/On_Demand_Activation/POA_On_Demand_Activation.mpc3
-rw-r--r--TAO/examples/POA/On_Demand_Loading/POA_On_Demand_Loading.mpc3
-rw-r--r--TAO/examples/POA/POA_BiDir/POA_BiDir.mpc5
-rw-r--r--TAO/examples/POA/Reference_Counted_Servant/Reference_Counted_Servant.mpc3
-rw-r--r--TAO/examples/POA/TIE/POA_TIE.mpc6
14 files changed, 19 insertions, 40 deletions
diff --git a/TAO/examples/POA/Adapter_Activator/POA_Adapter_Activator.mpc b/TAO/examples/POA/Adapter_Activator/POA_Adapter_Activator.mpc
index 92e0254b024..7f01d95962a 100644
--- a/TAO/examples/POA/Adapter_Activator/POA_Adapter_Activator.mpc
+++ b/TAO/examples/POA/Adapter_Activator/POA_Adapter_Activator.mpc
@@ -1,8 +1,7 @@
// -*- MPC -*-
// $Id$
-project(*Server): taoexe, portableserver {
- avoids += minimum_corba
+project(*Server): taoexe, portableserver, minimum_corba {
includes += ../Generic_Servant
libs += Generic_Servant
after += POA_Generic_Servant_Lib
diff --git a/TAO/examples/POA/DSI/POA_DSI.mpc b/TAO/examples/POA/DSI/POA_DSI.mpc
index 19d9e4f61a2..04d3e67fc42 100644
--- a/TAO/examples/POA/DSI/POA_DSI.mpc
+++ b/TAO/examples/POA/DSI/POA_DSI.mpc
@@ -1,13 +1,11 @@
//$Id$
-project(*Client) : taoexe, messaging, portableserver {
- avoids += minimum_corba
+project(*Client) : taoexe, messaging, portableserver, minimum_corba {
source_files {
client.cpp
}
}
-project(*Server) : taoexe, messaging, portableserver, dynamicinterface{
- avoids += minimum_corba
+project(*Server) : taoexe, messaging, portableserver, dynamicinterface, minimum_corba {
source_files {
Database_i.cpp
server.cpp
diff --git a/TAO/examples/POA/Default_Servant/POA_Default_Servant.mpc b/TAO/examples/POA/Default_Servant/POA_Default_Servant.mpc
index dd0c0d645cd..779807622d3 100644
--- a/TAO/examples/POA/Default_Servant/POA_Default_Servant.mpc
+++ b/TAO/examples/POA/Default_Servant/POA_Default_Servant.mpc
@@ -1,15 +1,13 @@
// -*- MPC -*-
// $Id$
-project(*Client) : taoexe, portableserver {
- avoids += minimum_corba
+project(*Client) : taoexe, portableserver, minimum_corba {
source_files {
client.cpp
}
}
-project(*Server) : taoexe, portableserver {
- avoids += minimum_corba
+project(*Server) : taoexe, portableserver, minimum_corba {
source_files {
File_i.cpp
server.cpp
diff --git a/TAO/examples/POA/Explicit_Activation/POA_Explicit_Activation.mpc b/TAO/examples/POA/Explicit_Activation/POA_Explicit_Activation.mpc
index 92e0254b024..7f01d95962a 100644
--- a/TAO/examples/POA/Explicit_Activation/POA_Explicit_Activation.mpc
+++ b/TAO/examples/POA/Explicit_Activation/POA_Explicit_Activation.mpc
@@ -1,8 +1,7 @@
// -*- MPC -*-
// $Id$
-project(*Server): taoexe, portableserver {
- avoids += minimum_corba
+project(*Server): taoexe, portableserver, minimum_corba {
includes += ../Generic_Servant
libs += Generic_Servant
after += POA_Generic_Servant_Lib
diff --git a/TAO/examples/POA/FindPOA/POA_FindPOA.mpc b/TAO/examples/POA/FindPOA/POA_FindPOA.mpc
index e2176127181..e5743eb768c 100644
--- a/TAO/examples/POA/FindPOA/POA_FindPOA.mpc
+++ b/TAO/examples/POA/FindPOA/POA_FindPOA.mpc
@@ -1,7 +1,6 @@
// -*- MPC -*-
// $Id$
-project: taoexe, portableserver {
- avoids += minimum_corba
+project: taoexe, portableserver, minimum_corba {
}
diff --git a/TAO/examples/POA/Forwarding/POA_Forwarding.mpc b/TAO/examples/POA/Forwarding/POA_Forwarding.mpc
index e8b34068166..6356aeab319 100644
--- a/TAO/examples/POA/Forwarding/POA_Forwarding.mpc
+++ b/TAO/examples/POA/Forwarding/POA_Forwarding.mpc
@@ -1,15 +1,13 @@
// -*- MPC -*-
// $Id$
-project(*Client) : taoexe, portableserver {
- avoids += minimum_corba
+project(*Client) : taoexe, portableserver, minimum_corba {
source_files {
client.cpp
}
}
-project(*Server) : taoexe, portableserver {
- avoids += minimum_corba
+project(*Server) : taoexe, portableserver, minimum_corba {
source_files {
test_i.cpp
server.cpp
diff --git a/TAO/examples/POA/Generic_Servant/POA_Generic_Servant.mpc b/TAO/examples/POA/Generic_Servant/POA_Generic_Servant.mpc
index 5ddbc1753a3..0cc793eef25 100644
--- a/TAO/examples/POA/Generic_Servant/POA_Generic_Servant.mpc
+++ b/TAO/examples/POA/Generic_Servant/POA_Generic_Servant.mpc
@@ -1,6 +1,5 @@
// $Id$
-project(*lib): taolib_with_idl, portableserver {
- avoids += minimum_corba
+project(*lib): taolib_with_idl, portableserver, minimum_corba {
sharedname = Generic_Servant
dynamicflags = GENERIC_SERVANT_BUILD_DLL
idlflags += -Wb,export_macro=GENERIC_SERVANT_Export -Wb,export_include=generic_servant_export.h
@@ -9,8 +8,7 @@ project(*lib): taolib_with_idl, portableserver {
}
}
-project(*client): taoexe, portableserver {
- avoids += minimum_corba
+project(*client): taoexe, portableserver, minimum_corba {
after += *lib
libs += Generic_Servant
idl_files {
diff --git a/TAO/examples/POA/Loader/POA_Loader.mpc b/TAO/examples/POA/Loader/POA_Loader.mpc
index 08d63c26e51..5fb4927d770 100644
--- a/TAO/examples/POA/Loader/POA_Loader.mpc
+++ b/TAO/examples/POA/Loader/POA_Loader.mpc
@@ -1,6 +1,5 @@
// $Id$
-project(*Server): taoexe, portableserver {
- avoids += minimum_corba
+project(*Server): taoexe, portableserver, minimum_corba {
Source_Files {
server.cpp
Servant_Activator.cpp
diff --git a/TAO/examples/POA/NewPOA/POA_NewPOA.mpc b/TAO/examples/POA/NewPOA/POA_NewPOA.mpc
index de7282249a6..b330e9a825f 100644
--- a/TAO/examples/POA/NewPOA/POA_NewPOA.mpc
+++ b/TAO/examples/POA/NewPOA/POA_NewPOA.mpc
@@ -1,4 +1,3 @@
//$Id$
-project : taoexe, portableserver {
- avoids += minimum_corba
+project : taoexe, portableserver, minimum_corba {
}
diff --git a/TAO/examples/POA/On_Demand_Activation/POA_On_Demand_Activation.mpc b/TAO/examples/POA/On_Demand_Activation/POA_On_Demand_Activation.mpc
index 04ca8b96d72..57a09f749b8 100644
--- a/TAO/examples/POA/On_Demand_Activation/POA_On_Demand_Activation.mpc
+++ b/TAO/examples/POA/On_Demand_Activation/POA_On_Demand_Activation.mpc
@@ -1,8 +1,7 @@
// -*- MPC -*-
// $Id$
-project(*Server): taoexe, portableserver {
- avoids += minimum_corba
+project(*Server): taoexe, portableserver, minimum_corba {
includes += ../Generic_Servant
libs += Generic_Servant
after += POA_Generic_Servant_Lib
diff --git a/TAO/examples/POA/On_Demand_Loading/POA_On_Demand_Loading.mpc b/TAO/examples/POA/On_Demand_Loading/POA_On_Demand_Loading.mpc
index 6c3c72f5505..843c856715b 100644
--- a/TAO/examples/POA/On_Demand_Loading/POA_On_Demand_Loading.mpc
+++ b/TAO/examples/POA/On_Demand_Loading/POA_On_Demand_Loading.mpc
@@ -1,8 +1,7 @@
// -*- MPC -*-
// $Id$
-project(*Server): taoexe, portableserver {
- avoids += minimum_corba
+project(*Server): taoexe, portableserver, minimum_corba {
Source_Files {
server.cpp
Servant_Activator.cpp
diff --git a/TAO/examples/POA/POA_BiDir/POA_BiDir.mpc b/TAO/examples/POA/POA_BiDir/POA_BiDir.mpc
index d1e881a3dab..368e062cbc6 100644
--- a/TAO/examples/POA/POA_BiDir/POA_BiDir.mpc
+++ b/TAO/examples/POA/POA_BiDir/POA_BiDir.mpc
@@ -1,8 +1,5 @@
// -*- MPC -*-
// $Id$
-project: taoexe, portableserver, bidir_giop {
-
- avoids += minimum_corba
+project: taoexe, portableserver, bidir_giop, minimum_corba {
}
-
diff --git a/TAO/examples/POA/Reference_Counted_Servant/Reference_Counted_Servant.mpc b/TAO/examples/POA/Reference_Counted_Servant/Reference_Counted_Servant.mpc
index 6f42aaf7f48..0b54971c2cb 100644
--- a/TAO/examples/POA/Reference_Counted_Servant/Reference_Counted_Servant.mpc
+++ b/TAO/examples/POA/Reference_Counted_Servant/Reference_Counted_Servant.mpc
@@ -1,8 +1,7 @@
// -*- MPC -*-
// $Id$
-project(*Server): taoexe, portableserver {
- avoids += minimum_corba
+project(*Server): taoexe, portableserver, minimum_corba {
includes += ../Generic_Servant
libs += Generic_Servant
after += POA_Generic_Servant_Lib
diff --git a/TAO/examples/POA/TIE/POA_TIE.mpc b/TAO/examples/POA/TIE/POA_TIE.mpc
index e921c19724a..e517831c421 100644
--- a/TAO/examples/POA/TIE/POA_TIE.mpc
+++ b/TAO/examples/POA/TIE/POA_TIE.mpc
@@ -1,16 +1,14 @@
// -*- MPC -*-
// $Id$
-project(*Client) : taoexe, portableserver {
- avoids += minimum_corba
+project(*Client) : taoexe, portableserver, minimum_corba {
source_files {
client.cpp
testC.cpp
}
}
-project(*Server) : taoexe, portableserver {
- avoids += minimum_corba
+project(*Server) : taoexe, portableserver, minimum_corba {
source_files {
test_i.cpp
server.cpp