summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-05-15 07:37:56 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-05-15 07:37:56 +0000
commit4a41f65b5ad77da2be7bab32a115b31ed449979f (patch)
tree9f9b7b03bb7fe6695f42e85e34274d840a03c6e4 /TAO/tests/Param_Test
parente405fb51dc9850324d015691d2adb5df5ab8c1a5 (diff)
downloadATCD-4a41f65b5ad77da2be7bab32a115b31ed449979f.tar.gz
Tue May 15 07:36:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests/Param_Test')
-rw-r--r--TAO/tests/Param_Test/Makefile.am3
-rw-r--r--TAO/tests/Param_Test/Param_Test.mpc7
-rw-r--r--TAO/tests/Param_Test/client.h1
-rw-r--r--TAO/tests/Param_Test/server.cpp1
4 files changed, 8 insertions, 4 deletions
diff --git a/TAO/tests/Param_Test/Makefile.am b/TAO/tests/Param_Test/Makefile.am
index 8fdd6cf3480..72571cb5cbb 100644
--- a/TAO/tests/Param_Test/Makefile.am
+++ b/TAO/tests/Param_Test/Makefile.am
@@ -107,6 +107,7 @@ anyop_SOURCES = \
anyop_LDADD = \
$(TAO_BUILDDIR)/tao/libTAO_PortableServer.la \
+ $(TAO_BUILDDIR)/tao/libTAO_Codeset.la \
$(TAO_BUILDDIR)/tao/libTAO_AnyTypeCode.la \
$(TAO_BUILDDIR)/tao/libTAO.la \
$(ACE_BUILDDIR)/ace/libACE.la
@@ -219,6 +220,7 @@ client_LDADD = \
$(TAO_BUILDDIR)/tao/libTAO_CodecFactory.la \
$(TAO_BUILDDIR)/tao/libTAO_Valuetype.la \
$(TAO_BUILDDIR)/tao/libTAO_PortableServer.la \
+ $(TAO_BUILDDIR)/tao/libTAO_Codeset.la \
$(TAO_BUILDDIR)/tao/libTAO_AnyTypeCode.la \
$(TAO_BUILDDIR)/tao/libTAO.la \
$(ACE_BUILDDIR)/ace/libACE.la
@@ -248,6 +250,7 @@ server_SOURCES = \
server_LDADD = \
$(TAO_BUILDDIR)/tao/libTAO_PortableServer.la \
+ $(TAO_BUILDDIR)/tao/libTAO_Codeset.la \
$(TAO_BUILDDIR)/tao/libTAO_AnyTypeCode.la \
$(TAO_BUILDDIR)/tao/libTAO.la \
$(ACE_BUILDDIR)/ace/libACE.la
diff --git a/TAO/tests/Param_Test/Param_Test.mpc b/TAO/tests/Param_Test/Param_Test.mpc
index 868b62e939c..41280d6076e 100644
--- a/TAO/tests/Param_Test/Param_Test.mpc
+++ b/TAO/tests/Param_Test/Param_Test.mpc
@@ -9,7 +9,7 @@ project(*idl): taoidldefaults {
custom_only = 1
}
-project(*Server): taoserver, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
+project(*Server): taoserver, codeset, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
after += *idl
Source_Files {
param_testS.cpp
@@ -21,8 +21,7 @@ project(*Server): taoserver, avoids_minimum_corba, avoids_corba_e_compact, avoid
}
}
-project(*Client): taoserver, avoids_minimum_corba, dynamicinterface {
- avoids += ace_for_tao
+project(*Client): taoserver, codeset, avoids_minimum_corba, avoids_ace_for_tao, dynamicinterface {
exename = client
after += *idl
@@ -74,7 +73,7 @@ project(*Client): taoserver, avoids_minimum_corba, dynamicinterface {
}
}
-project(*Anyop): taoserver, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
+project(*Anyop): taoserver, codeset, avoids_minimum_corba, avoids_corba_e_compact, avoids_corba_e_micro {
exename = anyop
after += *idl
diff --git a/TAO/tests/Param_Test/client.h b/TAO/tests/Param_Test/client.h
index 937717371c7..8e9e0ec58d7 100644
--- a/TAO/tests/Param_Test/client.h
+++ b/TAO/tests/Param_Test/client.h
@@ -21,6 +21,7 @@
#define PARAM_TEST_CLIENT_H
#include "tao/DynamicInterface/Request.h"
+#include "tao/Codeset/Codeset.h"
#include "param_testC.h"
#include "results.h"
diff --git a/TAO/tests/Param_Test/server.cpp b/TAO/tests/Param_Test/server.cpp
index f519529eb28..784e2a7e120 100644
--- a/TAO/tests/Param_Test/server.cpp
+++ b/TAO/tests/Param_Test/server.cpp
@@ -14,6 +14,7 @@
// ============================================================================
#include "param_test_i.h"
+#include "tao/Codeset/Codeset.h"
#include "tao/debug.h"
#include "ace/Get_Opt.h"
#include "ace/Log_Msg.h"